.support-page {
    width: 100%;
    background: #f5f5f5;
    padding: 50px 0 100px;
}

.support-container {
    width: 100%;
    max-width: 1150px;
    margin: auto;
}

/* CATEGORY */

.support-category {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.support-category button {
    border: none;
    padding: 14px 28px;
    border-radius: 50px;
    background: #fff;
    color: #444;
    cursor: pointer;
    font-size: 15px;
}

.support-category .active {
    background: #ff2d7a;
    color: #fff;
}

.support-description {
    margin-top: 10px;

    margin-bottom: 30px;
    color: #555;
    font-size: 16px;
    line-height: 1.7;

}

/* ========================================
   TOP MENU SUPPORT PAGE ONLY
======================================== */

.support-top-menu {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;

    gap: 40px;

    margin-top: 30px;
    margin-bottom: 35px;
}

/* LINK */
.support-top-menu a {
    text-decoration: none;

    color: #ff4f93;

    font-size: 18px;
    font-weight: 500;

    transition: 0.3s ease;
}

/* HOVER */
.support-top-menu a:hover {
    color: #ff2f7d;
}

/* FEATURED */

.support-featured{
    background:#fff;
    border-radius:24px;
    padding:28px;
    display:grid;
    grid-template-columns:1fr 1fr 1fr;
    gap:20px;
    margin-bottom:50px;
    box-shadow:0 2px 15px rgba(0,0,0,.05);
}

.featured-text-image{
    width:100%;
    height:240px;
    object-fit:cover;
    border-radius:12px;
    margin-bottom:20px;
}

.featured-card img{
    width:100%;
    height:260px;
    object-fit:cover;
    margin-bottom:20px;
}

.featured-card h3{
    color:#ff2d7a;
    line-height:1.5;
    margin-bottom:15px;
    font-size:22px;
}

.featured-card p{
    line-height:1.9;
    color:#444;
    font-size:14px;
}

.featured-text h2{
    font-size:22px;
    line-height:1.5;
    font-weight:700;
    color:#ff2d7a;
    margin-top:20px;
    margin-bottom:20px;
}

.featured-card h3,
.featured-text h2{
    font-size:22px;
    line-height:1.5;
    font-weight:700;
    color:#ff2d7a;
}

.featured-text p{
    line-height:2;
    color:#444;
}

.featured-card span,
.featured-text span{
    display:inline-block;
    margin-top:18px;
    color:#ff2d7a;
}

.featured-left img {
    width: 100%;
    height: 270px;
    object-fit: cover;
}

.featured-left h3 {
    color: #ff2d7a;
    font-size: 20px;
    margin: 18px 0 12px;
    line-height: 1.5;
}

.featured-left p {
    color: #444;
    line-height: 1.8;
    font-size: 14px;
}

.featured-left span,
.featured-right span,
.support-card span {
    color: #ff2d7a;
    font-size: 14px;
    display: inline-block;
    margin-top: 18px;
}

.featured-right {
    display: flex;
    align-items: flex-start;
}

.featured-right h2 {
    color: #ff2d7a;
    line-height: 1.5;
    font-size: 30px;
    margin-bottom: 20px;
}

.featured-right p {
    line-height: 2;
    color: #444;
}

/* GRID */

.support-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-bottom:40px;
    align-items:stretch;
}

.support-card{
    background:#fff;
    border-radius:24px;
    padding:20px;
    overflow:hidden;
    box-shadow:0 2px 15px rgba(0,0,0,.05);

    display:flex;
    flex-direction:column;
    justify-content:space-between;
    height:100%;
}

.support-card img{
    width:100%;
    height:320px;
    object-fit:cover;
    border-radius:16px;
    display:block;
    margin-bottom:20px;
}

.support-card h3{
    color:#ff2d7a;
    line-height:1.5;
    margin-bottom:15px;
}

.support-card p{
    line-height:1.8;
    font-size:14px;
    color:#444;

    display:-webkit-box;
    -webkit-line-clamp:4;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

.support-card span{
    display:inline-block;
    margin-top:18px;
    color:#ff2d7a;
}

/* PODCAST */

.support-podcast{
    text-align:center;
    padding:40px 0;
}

.podcast-platform {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 30px;
}

.podcast-platform img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.podcast-platform a {
    display: inline-block;
    transition: 0.3s ease;
}

.podcast-platform a:hover {
    transform: translateY(-5px);
}

/* FOOTER MENU */

.support-footer-menu {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #ff8ab6;
    padding-top: 25px;
}

.support-footer-menu a {
    color: #ff2d7a;
    text-decoration: none;
    font-size: 14px;
}

/* LINKS */

.support-page a {
    text-decoration: none;
}

/* =========================================
   SUPPORT DETAIL PAGE
========================================= */

.support-detail-page {
    width: 100%;
    padding: 50px 20px 80px;
    background: #f6f6f6;
}

.support-detail-container {
    max-width: 1100px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 24px;
}

.support-breadcrumb {
    font-size: 14px;
    margin-bottom: 20px;
    color: #999;
}

.support-breadcrumb a {
    color: #ff4f93;
    text-decoration: none;
}

.support-detail-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #222;
}

.support-detail-meta {
    font-size: 14px;
    color: #999;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.support-detail-intro {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #444;
}

.support-detail-image {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 40px;
    display: block;
}

.support-detail-content {
    font-size: 18px;
    line-height: 1.9;
    color: #333;
}

/* ========================================
   SHOP SECTION
======================================== */

.shop {
    padding: 70px 0;
    text-align: center;
}

.shop-title {
    font-size: 28px;
    font-weight: 500;
    color: #444;
    margin-bottom: 40px;
}

.marketplace {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.marketplace a {
    transition: 0.3s ease;
}

.marketplace a:hover {
    transform: translateY(-5px);
}

.marketplace img {
    width: 110px;
    height: 110px;
    object-fit: contain;
    border-radius: 18px;
}


/* MOBILE */
@media(max-width:768px){

    .support-page {
        padding: 30px 15px 60px;
    }

    .support-featured {
        grid-template-columns: 1fr;
    }

    .support-grid {
        grid-template-columns: 1fr;
    }

    .featured-right h2 {
        font-size: 24px;
    }

    .support-footer-menu {
        flex-wrap: wrap;
        gap: 15px;
    }

    .support-detail-page {
        padding: 30px 15px 50px;
    }

    .support-detail-container {
        padding: 25px;
        border-radius: 18px;
    }

    .support-detail-title {
        font-size: 30px;
    }

    .support-detail-content,
    .support-detail-intro {
        font-size: 16px;
    }

    .podcast-platform{
        flex-direction:column;
        gap:25px;
        align-items:center;
    }


}
