/* @import "./globals.css"; */

.main .container {
    display: flex;
    gap: 40px;
    flex-direction: column;
}

@media screen and (min-width: 1250px) {
    .main .container {
        flex-direction: row;
    }
}

.header {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.header .header-top {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
}

.header .header-top .header-logo {
    height: 40px;
}

.header .container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.header .header-title {
    width: 100%;
}

.header .header-title h1 {
    max-width: 800px;
    color: #1E2125;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
}

.header .header-title p {
    max-width: 900px;
    color: #383C43;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.header-title .characteristic-list {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 10px;
}

.header-title .characteristic-list .characteristic-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #000;
    font-size: 11px;
    font-style: normal;
    font-weight: 500;
}

.header-title .characteristic-list .characteristic-item .item-icon {
    width: 32px;
    height: 32px;
}

.header-title .characteristic-list .characteristic-item .item-icon img {
    width: 100%;
    height: 100%;
}

@media screen and (min-width: 768px) {
    .header .header-title h1 {
        font-size: 42px;
        font-style: normal;
        font-weight: 700;
        line-height: 58px;
    }

    .header .header-title p {
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 20px;
    }
}

.main {
    margin-top: 20px;
}

.main .main-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.main .main-content .text-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.main .main-content .text-content .group-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.main .main-content .text-content .group-list .text-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.main .main-content .text-content p {
    color: #383C43;
    font-size: 15px;
    font-style: italic;
    font-weight: 400;
    line-height: 26px;
}

.main .main-content .text-content.advertiser {
    padding: 10px;
    background: rgba(217, 217, 217, 0.72);
}

.main .main-content .text-content.advertiser p {
    color: #1E2125;
    font-size: 9px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
}

.main .main-content .text-content.advertiser p span {
    text-decoration: underline;
}

.main .main-content .site-list {}

.main .main-content .site-list .highlight-separator {
    width: 100%;
    padding: 2rem;
    background: #193F3A;
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.main .main-content .site-list .highlight-separator .highlight-logo-img { max-height: 50px; max-width: 150px; height: auto; }

@media screen and (min-width: 768px) {
    .main .main-content .site-list .highlight-separator .highlight-logo-img { max-height: 70px; max-width: 180px; }
}

.main .main-content .site-list .highlight-separator .highlight-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 520px;
}

.main .main-content .site-list .highlight-separator .highlight-text h2 {
    color: #FFF;
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
    text-align: center;
}

.main .main-content .site-list .highlight-separator .highlight-text p {
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 17px;
    text-align: center;
}

@media screen and (min-width: 850px) {
    .main .main-content .site-list .highlight-separator {
        flex-direction: row;
    }

    .main .main-content .site-list .highlight-separator .highlight-text {
        align-items: start;
    }

    .main .main-content .site-list .highlight-separator .highlight-text h2 {
        text-align: left;
    }

    .main .main-content .site-list .highlight-separator .highlight-text p {
        text-align: left;
    }
}

.main .main-content .site-list .site-item {
    border-radius: 7px;
    border: 1px solid #000;
    padding: 1rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.main .main-content .site-list .site-item .item-title {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media screen and (min-width: 768px) {
    .main .main-content .site-list .site-item {flex-wrap: nowrap;}
    .main .main-content .site-list .site-item .item-title {width: 155px; flex-shrink: 0;}
}

@media screen and (min-width: 992px) {
    .main .main-content .site-list .site-item .item-title {width: 200px; flex-shrink: 0;}
}

.main .main-content .site-list .site-item .item-title .item-badge {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.main .main-content .site-list .site-item .item-title .item-badge .badge-icon {}

.main .main-content .site-list .site-item .item-title .item-badge .badge-icon img {}

.main .main-content .site-list .site-item .item-title .item-badge .badge-text {
    max-width: max-content;
    background-size: contain;
    background-repeat: no-repeat;
    padding: 0 1rem;
    display: flex;
    color: #FFF;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px;
    background-position: center;
    position: relative;
}

.main .main-content .site-list .site-item .item-title .item-badge .badge-text .badge-title {
    z-index: 2;
}

.main .main-content .site-list .site-item .item-title .item-badge .badge-text .badge-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.main .main-content .site-list .site-item .item-title .title-text {
    display: flex;
    flex-direction: column;
    align-items: start;
    text-decoration: none;
}

.main .main-content .site-list .site-item .item-title .title-text .item-rank {
    color: #000;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
}

.main .main-content .site-list .site-item .item-title .title-text .item-logo {
    max-width: 150px;
    width: 100%;
    object-fit: contain; object-position: left;
    height: auto;
    max-height: 50px;
}

@media screen and (min-width: 768px) {
    .main .main-content .site-list .site-item .item-title .title-text .item-logo {max-height: 70px; max-width: 180px;}
}

.main .main-content .site-list .site-item .item-characteristics {
    width: 135px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-left: auto;
}

@media screen and (min-width: 768px) {
    .main .main-content .site-list .site-item .item-characteristics {flex-shrink: 0;}
}

@media screen and (min-width: 992px) {
    .main .main-content .site-list .site-item .item-characteristics {width: 20%;}
}

.main .main-content .site-list .site-item .item-characteristics .item-rating {
    display: flex;
    border-radius: 4px;
    border: 1px solid rgba(118, 129, 173, 0.20);
    overflow: hidden;

}

.main .main-content .site-list .site-item .item-characteristics .item-rating .rating-number {
    width: 100%;
    display: flex;
    align-items: center;
    background-color: #34997D;
    padding: 0 10px;
    justify-content: center;
    color: #FFF;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
}

.main .main-content .site-list .site-item .item-characteristics .item-rating .rating-level {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5px 10px;
    color: #657E79;
    text-align: center;
    font-size: 8px;
    font-weight: 800;
    line-height: 16.5px;
    text-transform: uppercase;
    width: max-content;
    white-space: nowrap;
}

.main .main-content .site-list .site-item .item-characteristics .item-rating .rating-level .rating-stars {
    display: flex;
}

.item-read-button {
    border-radius: 5px;
    border: 1px solid #0569FF;
    color: #0569FF;
    font-size: 11px;
    font-style: normal;
    font-weight: 500;
    text-decoration: none;
    padding: 7px 14px;
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.item-highlight {
    color: #4FAE55;
    text-align: center;
    font-size: 10px;
    font-style: normal;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 6px;
    border: 2px dashed #4FAE55;
    padding: 10px 5px;
    text-decoration: none;
}

.main .main-content .site-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.main .main-content .site-list .site-item .item-description {
    max-width: 430px;
    flex-grow: 1; min-width: 100%;
}

@media screen and (min-width: 768px) {
    .main .main-content .site-list .site-item .item-description { min-width: 1px;}
}

@media screen and (min-width: 950px) {
    .main .main-content .site-list .site-item .item-description {
        max-width: 600px;
    }
}

.main .main-content .site-list .site-item .item-description ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.main .main-content .site-list .site-item .item-description ul .description-title {
    color: #333;
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}


.main .main-content .site-list .site-item .item-description ul li {
    color: #333;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
    display: flex;
    align-items: start;
    gap: 0.5rem;
}

.main .main-content .site-list .site-item .item-description ul li img {
    margin-top: 2px;
}

.item-visit-button {
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
    color: #FFF;
    padding: 0 15px;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    border-radius: 6px;
    background: #34997D;
    text-decoration: none;
}

.item-visit-button:hover { color: #fff;}

.item-visit-button.visit-button-bottom {
    margin-top: 20px;
}

.item-visit-button.visit-button-top {
    display: none;
}

@media screen and (min-width: 768px) {
    .main .main-content .site-list .site-item {
        gap: 1rem;
    }

    .item-visit-button.visit-button-bottom {
        display: none;
    }

    .item-visit-button.visit-button-top {
        display: flex;
    }

    .main .main-content .site-list .site-item .item-title .title-text {
        flex-direction: column;
        align-items: start;
    }

    .main .main-content .site-list .site-item .item-characteristics {
        order: 1;
    }
}

.main-guide .guide-box {
    border: 2px solid #D1E5E1;
}

.main-guide .guide-box .guide-title {
    width: 100%;
    padding: 10px 20px;
    background: #F6F5F3;
    border-bottom: 1px solid #D1E5E1;
}

.main-guide .guide-box .guide-title h2 {
    color: #333;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 21px;
    text-transform: capitalize;
}

.main-guide .guide-box .guide-list {
    padding: 0 25px;
}

.main-guide .guide-box .guide-list .divisor {
    width: 100%;
    height: 1px;
    background: #F3F3F3;

}


.main-guide .guide-box .guide-list .guide-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px 0;
}

.main-guide .guide-box .guide-list .guide-item h3 {
    max-width: 220px;
    color: #333;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
}

.main-guide .guide-box .guide-list .guide-item a {
    color: #657E79;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    text-transform: capitalize;
    text-decoration: none;
}

.main-content .article {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.main-content .article .site-list .site-item {
    background: #DCFBF3;
}

.main-content .article .divisor {
    width: 100%;
    height: 2px;
    background-color: #000;
}

.main-content .article h2 {
    color: #1E2125;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
}

.main-content .article h3 {
    color: #1E2125;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
}

.ad-box {
    width: 100%;
    padding: 35px;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 40px;
    border-radius: 4px;
    border: 1px solid #E0E8FD;
    background: #FFF;
    box-shadow: 0 -1px 2px 0 rgba(24, 28, 71, 0.04), 0 2px 4px 0 rgba(24, 28, 71, 0.10);
    position: relative;
}

.ad-box .ad-badge {
    position: absolute;
    right: 1rem;
    top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    text-transform: uppercase;
    color: #333;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
}

.ad-box .ad-image {
    width: 154px;
    height: 154px;
}

.ad-box .ad-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.ad-box .ad-content h6 {
    /* max-width: 240px; */
    color: #657E79;
    font-size: 15.75px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    text-align: center;
}

.ad-box .ad-content h3 {
    max-width: 300px;
    color: #333;
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    text-align: center;
}

.ad-box .ad-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.ad-box .ad-actions .ad-button {
    color: #FFF;
    font-size: 15.875px;
    font-weight: 600;
    line-height: 24px;
    width: 200px;
    height: 50px;
    border-radius: 4px;
    background: #657E79;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.ad-box .ad-actions span {
    color: #333;
    text-align: center;
    font-size: 11.625px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
}

@media screen and (min-width: 850px) {
    .ad-box {
        flex-direction: row;
    }

    .ad-box .ad-content {
        align-items: start;
    }

    .ad-box .ad-content h6 {
        text-align: left;
    }

    .ad-box .ad-content h3 {
        text-align: left;
    }

    .ad-box .ad-actions {
        margin-left: auto;
    }
}
