.opinionCardProfile {
    display: flex;
    align-items: center;
    gap: 10px;
}
.opinionCardProfileContainer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.opinionCardAvatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}
.opinionCardAuthor {
    font-size: 16px;
    font-weight: 700;
    line-height: 110%;
}
.opinionCardProfileInfo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.opinionCardButton {
    font-size: 14px;
    font-weight: 700;
    background: #f0f0f0;
    padding: 3px 10px;
    border-radius: 8px;
}
.opinionCardAvatarDefault {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 16px;
}

.opinionCard {
    width: 100%;
    height: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 24px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #f2f2f2;
    box-shadow:
        0px 1px 2px 0px #bababa1a,
        0px 3px 3px 0px #bababa17,
        0px 7px 4px 0px #bababa0d,
        0px 12px 5px 0px #bababa03,
        0px 19px 5px 0px #bababa00;
}

.opinionCardContent {
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: space-between;
    background: #fff;
    flex: 1;
    border-radius: 10px;
}

.opinionCardHeader{
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.opinionCardViews {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    color: rgba(0, 0, 0, 0.6);
}
.opinionCardViewsText.greenBtnHover{
    border-radius: 10px;
    padding: 15px 20px;
    background: #00b129;
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    color: #fff;
}
.opinionCardCategory {
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    color: #00b129;
}
.opinionCardInfoShare {
    display: flex;
    align-items: center;
    gap: 25px;
}
.opinionCardLink {
    font-size: 14px;
    color: #2457fe;
    border-bottom: 1px solid #2457fe;
    line-height: 110%;
}
.opinionCardTitle {
    font-weight: 500;
    font-size: 20px;
    line-height: 120%;
    color: #00b129;
}
.opinionCardText {
    font-weight: 300;
    font-size: 14px;
    line-height: 120%;
    color: #000;
}
.opinionCardInfo {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.videoAuthor {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 24px;
    color: #333;
}
.iframeWrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 10px;
    overflow: hidden;
    max-height: 350px;
    z-index: 0;
}
.iframeWrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    z-index: 1;
}

.opinionCardImage {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, rgba(187, 187, 187, 0.3), rgba(174, 166, 166, 0.5));
    background-image: linear-gradient(135deg, var(--g1, rgba(187, 187, 187, 0.3)), var(--g2, rgba(174, 166, 166, 0.5)));
    transition:
        background-image 240ms ease,
        background-color 240ms ease;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: white;
    border-radius: 16px;
    height: 350px;
}

@media (max-width: 768px) {
    .opinionCard {
        max-width: 100%;
        padding: 16px;
    }
    .opinionCardImage {
        height: 300px;
    }
}
@media (max-width: 500px) {
    .opinionCardProfileContainer {
        flex-direction: column;
        align-items: flex-start;
    }
    .opinionCardImage {
        height: 250px;
    }
}
