body{
    margin: 0;
    font-family: CustomFontBlack, sans-serif;;
    background-color: #f5f5f5;
}

h1, p, h2, h3{
    margin: 0;
}

a{
    text-decoration: none;
    color: #000;
}

.academyContentHeader{
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 32px 24px;
}

.academyHeaderTitle{
    font-size: 24px;
    font-weight: 700;
}

.containerfounders {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-family: CustomFontBlack, sans-serif;
    width: 100%;
    padding: 0px 16px;
    box-sizing: border-box;
}

.accordion {
    margin-bottom: 48px;
}

.accordion-item {
    margin-bottom: 8px;
    border-radius: 8px;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.accordion-header {
    height: 54px;
    align-items: center;
    padding: 12px 16px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    background-color: #eee;
    border-radius: 8px;
    width: 368px;
    box-sizing: border-box;
}

.profile-img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-right: 16px;
    background-color: transparent;
}

.accordion-header > span:first-of-type {
    flex-grow: 1; 
    font-size: 16px;
    color: #333;
}

.arrow {
    width: 24px;
    height: 24px;
    display: block;
    align-self: center;
    transition: transform 0.3s ease, filter 0.2s ease;
    filter: invert(1) brightness(0.35);
}

.accordion-header.active {
    background-color: #000000;
    color: white;
}

.accordion-header.active > span {
    color: white;
}

.accordion-header.active .arrow {
    transform: rotate(180deg);
    filter: invert(0) brightness(1);
}

.accordion-content {
    max-height: 0px; 
    overflow: hidden;
    transition: opacity 0.1s ease-out, max-height 0.2s ease-in-out, padding 0.2s ease;
    background-color: #d5d5d5;
    margin: 0;
    border: none;
    padding: 0 20px;
    width: 280px;
    opacity: 0;
}

.accordion-content p {
    margin: 0;
    font-size: 16px;
    overflow: hidden;
}

.accordion-content.active {
    max-height: 150px; 
    width: 280px;
    padding: 16px 20px;
    background-color: white; 
    border-radius: 0 0 8px 8px; 
    opacity: 1;
    transition: opacity 0.1s ease-out, max-height 0.2s ease-in-out, padding 0.2s ease;
}

.backgroundHeader{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.textSection{
    padding: 0 24px;
    background-color: white;
    padding: 48px 24px;
    border-radius: 24px;
}

h3,h5{
    margin: 0;
}

.backgroundRectangle{
    margin-bottom: 24px;
}

.tagNew{
    background-color: #da3d2f12;
    color: #DA3D2F;
    font-size: 12px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 8px;
    margin-right: 4px;
}

.likeSection{
    padding: 0 24px;
    margin-top: 48px;
}

.reaction-bar{
    display: flex;
    gap: 12px;
    background: #000;
    padding: 8px;
    border-radius: 999px;
    width: 100%;
    max-width: 520px;
    box-sizing: border-box;
    align-items: center;
    justify-content: space-between;
    margin-top: 32px;
}

.reaction-btn{
    position: relative;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 999px;
    font-family: CustomFontBlack, sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: transform 220ms ease, background-color 220ms ease, color 220ms ease;
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: width 400ms ease;
}

.reaction-btn:focus{
    outline: none;
    width: 80%;
}

.reaction-btn .reaction-icon{
    font-size: 18px;
}

.reaction-btn.active{
    transform: scaleX(12px);
}

.like-btn.active{
    background: #2f46ff;
    color: #fff;
}

.dislike-btn.active{
    background: #da3d2f;
    color: #fff;
}

.reaction-btn .reaction-icon,
.reaction-btn .reaction-label{
    transition: transform 220ms ease;
}

.reaction-btn.active .reaction-icon{
    transform: rotate(-6deg);
}

.similarSuggestions{
    padding: 0 24px;
    margin-top: 48px;
}

.similarSuggestionsTitle{
    margin-bottom: 32px;
}

.footer{
    margin-top: 48px;
}