* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(120deg, #222222, #1EDA00);
    min-height: 100vh;
    padding: 20px;
    overflow-x: hidden;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.container {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    padding: 10px 0;
    min-height: calc(100vh - 40px);
    display: flex;
    flex-direction: column;
}


/* ==========================================================================
   Navigation Styles
   ========================================================================== */

.navigation {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-item {
    flex: 1;
    text-align: center;
    padding: 8px 4px;
    margin: 0 2px;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    white-space: nowrap;
}

.nav-item.active {
    background: rgba(255, 255, 255, 0.25);
    color: white;
    font-weight: 600;
}

.nav-item:hover {
    background: rgba(255, 255, 255, 0.2);
}


/* ==========================================================================
   Profile Section
   ========================================================================== */

.profile-section {
    text-align: center;
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 25px 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.profile-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    font-weight: bold;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.profile-name {
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.profile-bio {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-weight: 400;
}

.social {
    margin: 15px 0;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.social_link {
    opacity: 1;
    transition: all 0.2s cubic-bezier(.4, 0, .2, 1);
}

.social_link:hover {
    opacity: 0.8;
    transform: translateY(-7px);
}

.social_link_circle {
    display: flex;
    height: 45px;
    width: 45px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.social_icon {
    width: 20px;
    height: 20px;
    fill: #fff;
}


/* ==========================================================================
   Home Slider - Improved Responsiveness
   ========================================================================== */

.home-wrapper {
    width: 100%;
    max-width: 420px;
    margin: 0 auto 25px;
    padding: 0;
    display: none;
    border-radius: 1rem;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.home-slider {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 2;
}

.slide.prev {
    transform: translateX(-100%);
    z-index: 1;
}

.slide-content {
    flex: 1.2;
    color: white;
    text-align: left;
}

.slide-content h1 {
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.slide-content p {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.slider-btn {
    background-color: #fff;
    color: #66BB6A;
    border: none;
    padding: 0.5rem 1rem;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.slider-btn:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.slide-image {
    flex: 0.8;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide-image img {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    border-radius: 0.5rem;
    filter: brightness(1.1);
    object-fit: contain;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
    padding-bottom: 12px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background-color: rgba(255, 255, 255, 0.9);
    transform: scale(1.2);
}

.slide-out-left {
    transform: translateX(-100%);
    opacity: 0;
}

.slide-out-right {
    transform: translateX(100%);
    opacity: 0;
}

.slide-in-right {
    animation: slideInRight 0.6s forwards;
}

.slide-in-left {
    animation: slideInLeft 0.6s forwards;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}


/* ==========================================================================
   Links Grid dengan Overlay untuk Expand
   ========================================================================== */

.links-container {
    position: relative;
    width: 100%;
}

.links-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(4, 1fr);
    min-height: auto;
}

.link-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    aspect-ratio: 1;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.link-card:hover {
    transform: scale(1.1) translateY(-3px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.link-card:active {
    transform: scale(0.95);
}

.link-card.large {
    grid-column: span 2;
    border-radius: 25px;
    aspect-ratio: 2/1;
    flex-direction: row;
    text-align: left;
    padding: 0 20px;
}

.link-card.large::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 27px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    pointer-events: none;
}

.link-icon {
    font-size: 24px;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.link-card:hover .link-icon {
    opacity: 1;
    transform: scale(1.1);
}

.link-img {
    height: 28px;
    width: 28px;
    object-fit: contain;
    filter: brightness(1.2);
    transition: all 0.3s ease;
}

.link-card:hover .link-img {
    transform: scale(1.1);
    filter: brightness(1.4);
}

.link-card.large .link-icon {
    margin-right: 15px;
    font-size: 28px;
}

.link-title {
    display: none;
    font-family: 'Poppins', sans-serif;
}

.link-subtitle {
    display: none;
    font-family: 'Poppins', sans-serif;
}

.link-card.large .link-title {
    display: block;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 4px;
}

.link-card.large .link-subtitle {
    display: block;
    font-size: 10px;
    opacity: 0.7;
    font-weight: 400;
}

.link-card.large .link-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.link-card[data-category] {
    display: flex;
}


/* ==========================================================================
   Expanded Card Overlay
   ========================================================================== */

.expanded-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.expanded-card {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    padding: 30px;
    max-width: 320px;
    width: 90%;
    color: white;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.expanded-card.show {
    transform: scale(1);
    opacity: 1;
}

.expanded-card .close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.expanded-card .close-btn:hover {
    opacity: 1;
}

.expanded-card .expanded-icon {
    font-size: 48px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.expanded-card .expanded-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: brightness(1.2);
}

.expanded-card .expanded-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
}

.expanded-card .expanded-subtitle {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.5;
    margin-bottom: 20px;
}

.expanded-card .expanded-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 10px 20px;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.expanded-card .expanded-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}


/* ==========================================================================
   Responsive
   ========================================================================== */

/* Mobile Landscape */
@media (max-height: 600px) and (orientation: landscape) {
    body {
        padding: 15px;
        align-items: center;
    }

    .container {
        padding: 5px 0;
    }

    .navigation {
        margin-bottom: 15px;
        padding: 6px;
    }

    .nav-item {
        padding: 8px 6px;
        font-size: 11px;
    }

    .profile-section {
        margin-bottom: 20px;
        padding: 20px 15px;
    }

    .profile-img {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }

    .profile-name {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .profile-bio {
        font-size: 12px;
    }

    .social_link_circle {
        height: 40px;
        width: 40px;
    }

    .social_icon {
        width: 18px;
        height: 18px;
    }

    .links-grid {
        gap: 10px;
    }

    .link-card.large {
        border-radius: 20px;
        padding: 0 15px;
    }

    .link-card.large::before {
        border-radius: 22px;
    }

    .link-icon {
        font-size: 20px;
    }

    .link-img {
        height: 24px;
        width: 24px;
    }

    .link-card.large .link-img {
        margin-top: 10px;
        height: 24px;
        width: 24px;
    }

    .link-card.large .link-icon {
        font-size: 24px;
        margin-right: 12px;
    }

    .link-card.large .link-title {
        font-size: 11px;
    }

    .link-card.large .link-subtitle {
        font-size: 9px;
    }
}

/* Small Mobile Screens (375px and below) */
@media (max-width: 375px) {
    body {
        padding: 15px;
    }

    .container {
        max-width: 100%;
    }

    .navigation {
        padding: 6px;
        margin-bottom: 18px;
    }

    .nav-item {
        padding: 8px 4px;
        font-size: 11px;
    }

    .profile-section {
        padding: 20px 15px;
        margin-bottom: 20px;
    }

    .profile-img {
        width: 70px;
        height: 70px;
        margin-bottom: 15px;
    }

    .profile-name {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .profile-bio {
        font-size: 13px;
    }

    .social_link_circle {
        height: 42px;
        width: 42px;
    }

    .links-grid {
        gap: 10px;
    }

    .link-card.large {
        border-radius: 20px;
        padding: 0 15px;
    }

    .link-card.large::before {
        border-radius: 22px;
    }

    .link-icon {
        font-size: 22px;
    }

    .link-img {
        height: 26px;
        width: 26px;
    }

    .link-card.large .link-img {
        margin-top: 10px;
        height: 26px;
        width: 26px;
    }

    .link-card.large .link-icon {
        font-size: 26px;
        margin-right: 12px;
    }

    .link-card.large .link-title {
        font-size: 11px;
    }
}

/* Very Small Screens (320px and below) */
@media (max-width: 320px) {
    body {
        padding: 12px;
    }

    .navigation {
        padding: 5px;
        margin-bottom: 15px;
    }

    .nav-item {
        padding: 6px 3px;
        font-size: 10px;
    }

    .profile-section {
        padding: 18px 12px;
        margin-bottom: 18px;
    }

    .profile-img {
        width: 65px;
        height: 65px;
        margin-bottom: 12px;
    }

    .profile-name {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .profile-bio {
        font-size: 12px;
    }

    .social {
        margin: 12px 0;
        gap: 6px;
    }

    .social_link_circle {
        height: 38px;
        width: 38px;
    }

    .social_icon {
        width: 17px;
        height: 17px;
    }

    .links-grid {
        gap: 8px;
    }

    .link-card.large {
        border-radius: 18px;
        padding: 0 12px;
    }

    .link-card.large::before {
        border-radius: 20px;
    }

    .link-icon {
        font-size: 20px;
    }

    .link-img {
        height: 24px;
        width: 24px;
    }

    .link-card.large .link-img {
        margin-top: 10px;
        height: 24px;
        width: 24px;
    }

    .link-card.large .link-icon {
        font-size: 24px;
        margin-right: 10px;
    }

    .link-card.large .link-title {
        font-size: 10px;
    }
}

/* Tablet Portrait */
@media (min-width: 768px) and (max-width: 1024px) {
    .container {
        max-width: 450px;
    }

    .home-wrapper {
        max-width: 450px;
    }

    .home-slider {
        height: 250px;
    }

    .slide {
        padding: 1.5rem;
    }

    .slide-content h1 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .slide-content p {
        font-size: 0.85rem;
        margin-bottom: 1.2rem;
        -webkit-line-clamp: 4;
    }

    .slider-btn {
        padding: 0.7rem 1.4rem;
        font-size: 0.9rem;
    }

    .slide-content {
        max-width: 50%;
        padding-right: 2rem;
    }

    .slide-image {
        max-width: 45%;
    }

    .navigation {
        margin-bottom: 25px;
        padding: 12px;
    }

    .nav-item {
        font-size: 13px;
        padding: 12px 8px;
    }

    .profile-section {
        margin-bottom: 30px;
        padding: 30px 25px;
    }

    .profile-img {
        width: 90px;
        height: 90px;
        margin-bottom: 20px;
    }

    .profile-name {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .profile-bio {
        font-size: 15px;
    }

    .social_link_circle {
        height: 50px;
        width: 50px;
    }

    .social_icon {
        width: 22px;
        height: 22px;
    }

    .links-grid {
        gap: 15px;
    }

    .link-card.large {
        border-radius: 30px;
        padding: 0 22px;
    }

    .link-card.large::before {
        border-radius: 32px;
    }

    .link-icon {
        font-size: 28px;
    }

    .link-img {
        height: 32px;
        width: 32px;
    }

    .link-card.large .link-img {
        margin-top: 10px;
        height: 32px;
        width: 32px;
    }

    .link-card.large .link-icon {
        font-size: 32px;
        margin-right: 18px;
    }

    .link-card.large .link-title {
        font-size: 13px;
        margin-bottom: 5px;
    }

    .link-card.large .link-subtitle {
        font-size: 11px;
    }
}

/* Desktop */
@media (min-width: 1025px) {
    body {
        padding: 30px;
        align-items: center;
    }

    .container {
        max-width: 750px;
    }

    .home-wrapper {
        max-width: 750px;
    }

    .home-slider {
        height: 350px;
    }

    .slide {
        padding: 2rem;
    }

    .slide-content {
        max-width: 50%;
        padding-right: 2rem;
    }

    .slide-content h1 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .slide-content p {
        font-size: 0.9rem;
        margin-bottom: 2rem;
        -webkit-line-clamp: unset;
        display: block;
    }

    .slider-btn {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }

    .slide-image {
        max-width: 45%;
    }

    .navigation {
        margin-bottom: 30px;
        padding: 15px;
    }

    .nav-item {
        font-size: 14px;
        padding: 12px 10px;
    }

    .profile-section {
        margin-bottom: 35px;
        padding: 35px 30px;
    }

    .profile-img {
        width: 100px;
        height: 100px;
        margin-bottom: 22px;
    }

    .profile-name {
        font-size: 26px;
        margin-bottom: 18px;
    }

    .profile-bio {
        font-size: 16px;
    }

    .social {
        margin: 20px 0;
        gap: 10px;
    }

    .social_link_circle {
        height: 52px;
        width: 52px;
    }

    .social_icon {
        width: 24px;
        height: 24px;
    }

    .links-grid {
        gap: 30px;
    }

    .link-card.large {
        border-radius: 55px;
        padding: 0 25px;
    }

    .link-card.large::before {
        border-radius: 37px;
    }

    .link-icon {
        font-size: 60px;
    }

    .link-img {
        height: 60px;
        width: 60px;
    }

    .link-card.large .link-img {
        margin-top: 20px;
        height: 60px;
        width: 60px;
    }

    .link-card.large .link-icon {
        font-size: 60px;
        margin-right: 20px;
    }

    .link-card.large .link-title {
        font-size: 25px;
        margin-bottom: 6px;
    }

    .link-card.large .link-subtitle {
        font-size: 12px;
    }
}

/* Large Desktop */
@media (min-width: 1440px) {
    .container {
        max-width: 900px;
    }

    .home-wrapper {
        max-width: 900px;
    }

    .home-slider {
        height: 400px;
    }

    .slide-content h1 {
        font-size: 1.8rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .slider-btn {
        font-size: 1.2rem;
    }

    body {
        padding: 40px;
    }

    .profile-section {
        padding: 40px 40px;
        margin-bottom: 40px;
    }

    .profile-img {
        width: 120px;
        height: 120px;
    }

    .profile-name {
        font-size: 32px;
    }

    .profile-bio {
        font-size: 18px;
    }

    .social_link_circle {
        width: 60px;
        height: 60px;
    }

    .social_icon {
        width: 28px;
        height: 28px;
    }

    .links-grid {
        gap: 24px;
    }

    .link-card.large {
        padding: 0 30px;
    }

    .link-icon,
    .link-card.large .link-icon {
        font-size: 60px;
    }

    .link-img {
        width: 60px;
        height: 60px;
    }

    .link-card.large .link-img {
        margin-top: 20px;
        height: 60px;
        width: 60px;
    }

    .link-card.large .link-title {
        font-size: 31px;
    }

    .link-card.large .link-subtitle {
        font-size: 14px;
    }
}


/* ==========================================================================
   Slider Dots (Duplicate, tapi sudah ada di atas — tetap dipertahankan)
   ========================================================================== */

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background-color: rgba(255, 255, 255, 0.9);
    transform: scale(1.2);
}


/* ==========================================================================
   Link Card List Style untuk Kategori Join
   ========================================================================== */

.link-card.list {
    grid-column: span 4;
    border-radius: 15px;
    aspect-ratio: unset;
    height: auto;
    min-height: 60px;
    flex-direction: row;
    text-align: left;
    padding: 15px 18px;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
}

.link-card.list::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    pointer-events: none;
}

.link-card.list:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.25);
}

.link-card.list .link-icon-container {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.link-card.list .link-icon {
    font-size: 18px;
    margin: 0;
}

.link-card.list .link-img {
    width: 24px;
    height: 24px;
}

.link-card.list .link-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.link-card.list .link-title {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: white;
    margin: 0;
    line-height: 1.3;
}

.link-card.list .link-subtitle {
    display: block;
    font-size: 11px;
    opacity: 0.8;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.4;
}


/* ==========================================================================
   Responsive untuk Link Card List
   ========================================================================== */

@media (max-height: 600px) and (orientation: landscape) {
    .link-card.list {
        min-height: 50px;
        padding: 12px 15px;
        gap: 12px;
    }

    .link-card.list .link-icon-container {
        width: 35px;
        height: 35px;
    }

    .link-card.list .link-icon {
        font-size: 16px;
    }

    .link-card.list .link-img {
        width: 20px;
        height: 20px;
    }

    .link-card.list .link-title {
        font-size: 12px;
    }

    .link-card.list .link-subtitle {
        font-size: 10px;
    }
}

@media (max-width: 375px) {
    .link-card.list {
        min-height: 55px;
        padding: 14px 16px;
        gap: 12px;
    }

    .link-card.list .link-icon-container {
        width: 36px;
        height: 36px;
    }

    .link-card.list .link-icon {
        font-size: 16px;
    }

    .link-card.list .link-img {
        width: 22px;
        height: 22px;
    }

    .link-card.list .link-title {
        font-size: 13px;
    }

    .link-card.list .link-subtitle {
        font-size: 10px;
    }
}

@media (max-width: 320px) {
    .link-card.list {
        min-height: 50px;
        padding: 12px 14px;
        gap: 10px;
    }

    .link-card.list .link-icon-container {
        width: 34px;
        height: 34px;
    }

    .link-card.list .link-icon {
        font-size: 15px;
    }

    .link-card.list .link-img {
        width: 20px;
        height: 20px;
    }

    .link-card.list .link-title {
        font-size: 12px;
    }

    .link-card.list .link-subtitle {
        font-size: 9px;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .link-card.list {
        min-height: 65px;
        padding: 16px 20px;
        gap: 16px;
    }

    .link-card.list .link-icon-container {
        width: 42px;
        height: 42px;
    }

    .link-card.list .link-icon {
        font-size: 19px;
    }

    .link-card.list .link-img {
        width: 26px;
        height: 26px;
    }

    .link-card.list .link-title {
        font-size: 15px;
    }

    .link-card.list .link-subtitle {
        font-size: 12px;
    }
}

@media (min-width: 1025px) {
    .link-card.list {
        min-height: 70px;
        padding: 18px 22px;
        gap: 18px;
    }

    .link-card.list .link-icon-container {
        width: 45px;
        height: 45px;
        border-radius: 12px;
    }

    .link-card.list .link-icon {
        font-size: 20px;
    }

    .link-card.list .link-img {
        width: 28px;
        height: 28px;
    }

    .link-card.list .link-title {
        font-size: 16px;
    }

    .link-card.list .link-subtitle {
        font-size: 12px;
    }

    .link-card.list::after {
        font-size: 18px;
    }
}

@media (min-width: 1440px) {
    .link-card.list {
        min-height: 75px;
        padding: 20px 25px;
        gap: 20px;
    }

    .link-card.list .link-icon-container {
        width: 48px;
        height: 48px;
    }

    .link-card.list .link-icon {
        font-size: 22px;
    }

    .link-card.list .link-img {
        width: 30px;
        height: 30px;
    }

    .link-card.list .link-title {
        font-size: 18px;
    }

    .link-card.list .link-subtitle {
        font-size: 13px;
    }

    .link-card.list::after {
        font-size: 20px;
    }
}