.hero-section {
    width: 100%;
    max-width: 1440px;
    /* main-content와 동일 */
    margin: 0 auto;
    padding: 1.5rem 0rem;
    box-sizing: border-box;
}

.swiper.heroBannerSwiper {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

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

.hero-banner {
    width: 100%;
    height: 230px;
    margin: 0 auto;
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    border-radius: 20px;
    box-sizing: border-box;
    padding: 1.5rem 1rem 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* 추가: 수직 정렬 */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}


.banner-row {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.7rem;
    margin-bottom: 1rem;
}

.banner-main {
    flex: 1 1 auto;
}

.banner-title {
    color: #000;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    word-break: keep-all;
}

.banner-title .point {
    color: #000;
    font-weight: 900;
    margin-right: 0.2em;
}

.banner-desc {
    font-size: 1rem;
    color: #555;
    margin-bottom: 0.2rem;
}

.banner-icon {
    flex-shrink: 0;
    display: flex;
    align-items: flex-start;
}

.banner-btn {
    display: block;
    width: 100%;
    background: #111;
    color: #fff;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    text-decoration: none;
    padding: 0.85rem 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: background 0.2s, color 0.2s;
}

.banner-btn:hover {
    background: #333;
    color: #fff;
}

.swiper-pagination {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 0.4rem;
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #000;
    opacity: 0.1;
}

.swiper-pagination-bullet-active {
    background: #000;
    opacity: 1;
}

/* 모바일 최적화 (480px 이하) */
@media (max-width: 480px) {
    .hero-banner {
        max-width: 100%;
        padding: 1.1rem 0.6rem 1rem;
    }

    .banner-title {
        font-size: 1.5rem;
    }

    .banner-desc {
        font-size: 1rem;
    }

    .banner-btn {
        font-size: 0.95rem;
        padding: 0.7rem 0;
    }

    .banner-icon svg {
        width: 26px;
        height: 26px;
    }
}

/* PC 최적화 (768px 이상) */
@media (min-width: 768px) {
    .hero-banner {
        max-width: 100%;
        padding: 2rem 2.5rem;
    }

    .banner-title {
        font-size: 2rem;
    }

    .banner-desc {
        font-size: 1.5rem;
    }

    .banner-btn {
        font-size: 1.1rem;
        padding: 1rem 0;
        max-width: 300px;
        margin: 0 auto;
    }

    .banner-icon svg {
        width: 36px;
        height: 36px;
    }
}

/* 1440px 이상 대형 화면에서의 배너 최대 너비 조정 */
@media (min-width: 1440px) {
    .hero-banner {
        max-width: 100%;
    }
}

.category-section {
    background: none;
    border-radius: 0;
    padding: 0 0 2.5rem 0;
    color: #000;
    ;
    margin-bottom: 0;
}

.category-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 2.2rem;
    color: #000;
    text-align: center;
    letter-spacing: -0.5px;
}

.category-grid-gap {
    row-gap: 1rem;
}

.category-grid-new {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 2rem;
    justify-items: center;
    align-items: start;
    max-width: 900px;
    margin: 0 auto;
    padding: 30px 0 50px;
}

@media (max-width: 900px) {
    .category-grid-new {
        display: flex;
        overflow-x: auto;
        gap: 1.2rem;
        padding: 1rem 0;
        scroll-snap-type: x mandatory;
    }

    .category-card-new {
        flex: 0 0 auto;
        scroll-snap-align: start;
        width: 60px;
    }

    .category-icon-bg {
        width: 55px;
        height: 55px;
        margin-bottom: 0.3rem;
    }

    .category-icon-bg i {
        font-size: 1.1rem;
    }

    .category-label-new {
        font-size: 0.8rem;
        max-width: 70px;
    }

    .category-grid-new::-webkit-scrollbar {
        display: none;
    }
}

.category-card-new {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-decoration: none;
    background: none;
    border: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    transition: transform 0.13s;
}

.category-card-new:hover {
    transform: translateY(-4px) scale(1.06);
}

.category-icon-bg {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: #e3f2fd;
    /* 기본 연한 하늘색, 아래에서 개별 적용 */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.6rem;
}

.category-icon-bg i {
    font-size: 2rem;
    color: #000;
    ;
}

.category-label-new {
    font-size: 1rem;
    font-weight: bold;
    color: #000;
    text-align: center;
    margin-top: 0.1rem;
    letter-spacing: -0.01em;
    word-break: keep-all;
    line-height: 1.3;
    max-width: 90px;
    overflow-wrap: break-word;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 900px) {
    .category-title {
        font-size: 1.5rem;
        margin-bottom: 1.2rem;
    }

    .category-icon-bg {
        width: 55px;
        height: 55px;
        margin-bottom: 0.3rem;
    }

    .category-icon-bg i {
        font-size: 1.1rem;
    }

    .category-label-new {
        font-size: 0.8rem;
        max-width: 70px;
    }
}

.service-banner-section {
    margin: 1.5rem 0 1.2rem 0;
}

.service-banner-list {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
}

.service-banner-card {
    min-width: 120px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    padding: 1rem 0.7rem 0.7rem 0.7rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #eee;
}

.service-banner-title {
    font-size: 1rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 0.5rem;
}

.badge-free {
    background: #e3f2fd;
    color: #1976d2;
    font-size: 0.75rem;
    border-radius: 8px;
    padding: 0.1rem 0.5rem;
    margin-left: 0.3rem;
    font-weight: 600;
}

.service-banner-icon img {
    width: 36px;
    height: 36px;
}

.service-section {
    margin: 2.5rem 0 1.5rem 0;
    margin: 0 auto;
    /*padding: 0 1rem;*/
}

.service-section-header {
    margin-bottom: 1.2rem;
    padding: 0 0.5rem;
}

.service-section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.1rem;
    font-weight: 700;
    color: #111;
}

.service-section-title-main {
    color: #000;
    font-weight: 800;
    font-size: 1.5rem;
}

.service-section-more {
    color: #888;
    font-size: 0.98rem;
    font-weight: 500;
    cursor: pointer;
    margin-left: 0.7rem;
}

.service-section-more:hover {
    color: #1976d2;
}

.service-section-desc {
    font-size: 0.92rem;
    color: #888;
    margin-top: 0.2rem;
}

.service-card-list {
    display: flex;
    gap: 1.2rem;
    overflow-x: auto;
    padding: 0.5rem 0.5rem 1rem 0.5rem;
    scrollbar-width: thin;
    scrollbar-color: #1976d2 #f5f5f5;
    -webkit-overflow-scrolling: touch;
}

.service-card-list::-webkit-scrollbar {
    height: 6px;
}

.service-card-list::-webkit-scrollbar-track {
    background: #f5f5f5;
    border-radius: 3px;
}

.service-card-list::-webkit-scrollbar-thumb {
    background-color: #1976d2;
    border-radius: 3px;
}

.service-card {
    flex: 0 0 auto;
    width: 340px;
    min-width: 340px;
    max-width: 340px;
}

@media (max-width: 768px) {
    .service-section {
        padding: 0 0.5rem;
    }

    .service-card {
        width: 280px;
        min-width: 280px;
        max-width: 280px;
    }

    .service-card-list {
        gap: 0.8rem;
        padding: 0.3rem 0.3rem 0.8rem 0.3rem;
    }
}

/* PC 해상도 */
@media (min-width: 900px) {
    .service-card-list {
        gap: 1.5rem;
        /* 카드 간 간격 */
        padding: 1rem 0;
        /* 상하 여백 */
    }

    .service-card {
        width: 300px;
        /* 카드 너비 */
        min-width: 300px;
        max-width: 300px;
    }
}

/* 모바일 해상도 */
@media (max-width: 899px) {
    .service-card-list {
        gap: 1rem;
        /* 카드 간 간격 */
        padding: 0.5rem 0;
        /* 상하 여백 */
    }

    .service-card {
        width: 240px;
        /* 카드 너비 */
        min-width: 240px;
        max-width: 240px;
    }
}

/* 공통 스타일 */
.service-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1.5px solid #eee;
    transition: box-shadow 0.2s, border 0.2s;
    text-decoration: none;
    color: #111;
    position: relative;
}

.service-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10);
    border: 1.5px solid #1976d2;
}

.service-thumb-wrap {
    width: 100%;
    height: 180px;
    /* 섬네일 높이 고정 */
    background: #f5f5f5;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.service-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10);
    border: 1.5px solid #1976d2;
}

.service-thumb-wrap {
    width: 100%;
    height: 120px;
    background: #f5f5f5;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.service-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-play-btn {
    position: absolute;
    right: 10px;
    bottom: 10px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 50%;
    padding: 0.2rem;
    font-size: 1.5rem;
    color: #1976d2;
}

.service-card-body {
    padding: 0.7rem 1rem 0.7rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
}

.service-tag {
    background: #e3fcec;
    color: #43b581;
    border-radius: 999px;
    font-size: 0.82rem;
    padding: 0.18rem 0.7rem;
    font-weight: 600;
}

.service-title {
    font-size: 1.02rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 0.1rem;
}

.service-desc {
    font-size: 0.92rem;
    color: #666;
}

@media (max-width: 767px) {
    .main-content {
        max-width: 100vw;
    }

    .category-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .service-banner-list,
    .service-card-list {
        gap: 0.7rem;
    }

    .service-banner-card {
        min-width: 110px;
    }

    .service-card {
        min-width: 150px;
        max-width: 180px;
    }

    .category-item {
        padding: 0.5rem 0.8rem;
        font-size: 0.95rem;
    }

    .category-group-title {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
}

@media (min-width: 900px) {
    .main-content {
        max-width: 1440px;
    }

    .service-banner-list,
    .service-card-list {
        gap: 2rem;
    }

    .service-banner-card {
        min-width: 160px;
    }

    .service-card {
        min-width: 220px;
        max-width: 260px;
    }
}

.service-post-card-list {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.service-post-card {
    aspect-ratio: 3/4;
    max-width: 320px;
    min-width: 220px;
    background: transparent;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.service-post-thumb-wrap {
    width: 100%;
    height: 100%;
    position: relative;
    flex: 1 1 0;
}

.service-post-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-post-info-bottom {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 2.1rem 1.5rem 1.5rem 1.5rem;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    z-index: 1;
    overflow: hidden;
    background: none;
}

.service-post-info-bottom::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.95) 80%, rgba(255, 255, 255, 0.6) 40%, rgba(255, 255, 255, 0.1) 0%);
    backdrop-filter: blur(16px);
    z-index: 0;
}

.service-post-info-bottom>* {
    position: relative;
    z-index: 1;
}

.service-post-title {
    font-size: 1.18rem;
    font-weight: 800;
    color: #000;
    ;
    margin-bottom: 0.2rem;
}

.service-post-desc {
    font-size: 1.02rem;
    color: #888;
    margin-bottom: 0.3rem;
}

.service-post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.3rem;
}

.service-post-tag {
    background: #e3fcec;
    color: #43b581;
    border-radius: 999px;
    font-size: 1rem;
    padding: 0.22rem 1.1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.service-post-stats {
    display: flex;
    gap: 1.5rem;
    font-size: 1.02rem;
    color: #888;
    margin-top: 0.2rem;
    align-items: center;
}

.service-post-stats i {
    margin-right: 0.3em;
    font-size: 1.1em;
}

.service-post-follow-btn {
    background: #111;
    color: #fff;
    border-radius: 999px;
    font-weight: 800;
    font-size: 1.1rem;
    padding: 0.6rem 2.2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.13);
    position: absolute;
    right: 1.5rem;
    bottom: 1.5rem;
    border: none;
    transition: background 0.18s;
}

.service-post-follow-btn:hover {
    background: #000;
    ;
}

@media (max-width: 767px) {
    .service-post-card {
        max-width: 90vw;
        min-width: 70vw;
        border-radius: 16px;
    }

    .service-post-info-bottom {
        padding: 1.2rem 0.8rem 1rem 0.8rem;
        border-bottom-left-radius: 16px;
        border-bottom-right-radius: 16px;
    }

    .service-post-title {
        font-size: 1rem;
    }

    .service-post-tag {
        font-size: 0.92rem;
        padding: 0.18rem 0.8rem;
    }

    .service-post-follow-btn {
        font-size: 1rem;
        padding: 0.5rem 1.3rem;
        right: 1rem;
        bottom: 1rem;
    }
}

.servicePostSwiper {
    width: 100%;
    overflow: hidden;
}

.servicePostSwiper .swiper-slide {
    max-width: 100%;
    height: auto;
}

.top-banner-section {
    margin: 2rem 0 1.5rem 0;
}

.topBannerSwiper {
    width: 100%;
    overflow: hidden;
}

.topBannerSwiper .swiper-slide {
    width: auto !important;
    margin-right: 1.2rem !important;
}

.top-banner-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.top-banner-card {
    background: #f8f8f8;
    border-radius: 22px;
    width: 180px;
    height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.2rem 1rem 1rem 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
    overflow: hidden;
}

.top-banner-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.top-banner-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    overflow: hidden;
}

.top-banner-title {
    font-size: 1.18rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.top-banner-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 0.78rem;
    border-radius: 8px;
    padding: 0.13rem 0.7rem;
    font-weight: 700;
    margin-top: 0.1rem;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    backdrop-filter: blur(4px);
}

.top-banner-illust {
    position: absolute;
    right: 1.1rem;
    bottom: 1.1rem;
    display: flex;
    align-items: flex-end;
    min-width: 48px;
    min-height: 44px;
    z-index: 1;
    opacity: 0.9;
}

@media (max-width: 767px) {
    .top-banner-card {
        width: 120px;
        height: 120px;
        padding: 0.8rem 0.7rem 0.7rem 0.8rem;
    }

    .top-banner-title {
        font-size: 1rem;
    }

    .top-banner-illust {
        min-width: 32px;
        min-height: 32px;
    }

    .top-banner-illust i {
        font-size: 1.5rem !important;
    }
}

.main-card-link {
    text-decoration: none;
    color: inherit;
    display: inline-block;
}

.main-card {
    background: #f8fafb;
    border-radius: 32px;
    /*box-shadow: 0 4px 32px rgba(80, 80, 80, 0.12);*/
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.main-image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #e9ecef;
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 하단 블러 효과 */
/* 하단 블러 효과 */
.main-bottom-blur {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 45%;
    /* 필요시 조정 */
    /* 경계선이 전혀 없는 자연스러운 밝은 그라데이션 */
    background: linear-gradient(to top,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(255, 255, 255, 0.85) 30%,
            rgba(255, 255, 255, 0.65) 55%,
            rgba(255, 255, 255, 0.25) 80%,
            rgba(255, 255, 255, 0.0) 100%);
    pointer-events: none;
    z-index: 2;
}

/* 카드 내용 */
.main-info {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    padding: 0 28px 28px 28px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* 텍스트 및 버튼 스타일 */
.main-name-row {
    display: flex;
    align-items: center;
    font-size: 1.18rem;
    font-weight: 600;
    margin-bottom: 4px;
    margin-top: 0;
}

.main-name {
    margin-right: 8px;
    color: #000;
}

.main-verified {
    color: #000;
    font-size: 1.1rem;
}

.main-desc {
    color: #000;
    font-size: 1rem;
    margin-bottom: 22px;
    line-height: 1.5;
}

.main-stats-row {
    display: flex;
    gap: 28px;
    font-size: 1rem;
    color: #000;
    margin-bottom: 0;
    align-items: center;
}

.main-stat i {
    margin-right: 6px;
}

.main-follow-btn {
    background: #fff;
    color: #000;
    border: none;
    border-radius: 16px;
    padding: 10px 32px;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(80, 80, 80, 0.08);
    cursor: pointer;
    transition: background 0.15s;
    margin-top: 18px;
    align-self: flex-end;
}

.main-follow-btn:hover {
    background: #f0f0f0;
}

.main-name,
.main-desc,
.main-stat,
.main-follow-btn {
    color: #000 !important;
    /* 또는 #191919, #000 */
    text-shadow: 0 1px 4px rgba(255, 255, 255, 0.25);
    /* 밝은 배경에서 미세한 그림자 추가로 더 선명하게 */
}

.main-verified {
    color: #16c46d;
}

.main-stat i {
    color: #000;
}

.main-follow-btn {
    background: #fff;
    color: #000;
    font-weight: 700;
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(80, 80, 80, 0.08);
}

.modern-tag-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.modern-tag-card {
    position: relative;
    width: 220px;
    height: 280px;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
    transition: transform 0.18s, box-shadow 0.18s;
}

.modern-tag-card:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
}

.modern-tag-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 40%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.modern-tag-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #fff;
    color: #000;
    font-size: 0.92rem;
    font-weight: 300;
    letter-spacing: 1px;
    border-radius: 8px;
    padding: 0.18rem 0.9rem;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.modern-tag-card-content {
    position: relative;
    z-index: 2;
    padding: 0 1.2rem 2.5rem 1.2rem;
}

.modern-tag-title {
    font-size: 1.18rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.4rem;
    line-height: 1.3;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.13);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.modern-tag-desc {
    font-size: 1rem;
    color: #e0e0e0;
    font-weight: 400;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.modern-tag-arrow {
    position: absolute;
    right: 18px;
    bottom: 18px;
    z-index: 2;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    backdrop-filter: blur(2px);
    transition: background 0.18s;
}

.modern-tag-arrow:hover {
    background: rgba(255, 255, 255, 0.32);
}

@media (max-width: 767px) {
    .modern-tag-card {
        width: 140px;
        height: 185px;
        padding: 0.8rem 0.7rem 0.7rem 0.8rem;
    }

    .modern-tag-title {
        font-size: 1rem;
    }

    .modern-tag-arrow {
        width: 28px;
        height: 28px;
        font-size: 1rem;
        right: 10px;
        bottom: 10px;
    }

    .modern-tag-badge {
        top: 10px;
        right: 10px;
        font-size: 0.8rem;
        padding: 0.12rem 0.7rem;
    }

    .modern-tag-card-content {
        padding: 0 0.7rem 1.5rem 0.7rem;
    }
}

/* Swiper 슬라이드에 고정 너비 적용 */
.swiper.servicePostSwiper .swiper-wrapper {
    display: flex;
}

.swiper.servicePostSwiper .swiper-slide {
    width: 340px !important;
    max-width: 340px;
    min-width: 340px;
    box-sizing: border-box;
}

.servicePostSwiper .swiper-slide {
    width: 100%;
    /* 모바일 해상도에서 슬라이드 너비를 100%로 설정 */
    max-width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .swiper.servicePostSwiper .swiper-slide {
        width: 280px !important;
        max-width: 280px;
        min-width: 280px;
    }
}

.profile-card {
    width: 100%;
    min-width: unset;
    max-width: unset;
}

.swiper-button-next,
.swiper-button-prev {
    width: 48px;
    height: 48px;
    /* 흰색 배경에 50% 투명도 */
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    /* 밝은 회색 원형 배경 */
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

/* 기본 Swiper 아이콘 숨기기 */
.swiper-button-next::after,
.swiper-button-prev::after {
    display: none;
}

/* 오른쪽 화살표 (next) */
.swiper-button-next {
    right: 10px;
}

/* 왼쪽 화살표 (prev) */
.swiper-button-prev {
    left: 10px;
}