/*
Blog List Page Styles
Separate CSS file for blog list page to avoid conflicts
Optimized for Bootstrap 5 integration
*/

/* ===================================
   BLOG LIST PAGE STYLES
   =================================== */

/* Blog List Container */
.sbs-blog-list {
    position: relative;
    min-height: 100vh;
    background-color: #F7F7F7;
}

.blog-detail-sidebar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Campaign related thumbnails in sidebar (image-only cards) */
.campaign-related-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.campaign-related-item a,
.campaign-related-image {
    display: block;
    border-radius: 12px;
    overflow: hidden;
}

.campaign-related-image {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.campaign-detail-img {
    /* Follow Figma frame proportions ~844x492 */
    max-width: 844px;
    margin: 0 auto 24px;
}

.campaign-detail-img img {
    width: 100%;
    height: auto;
    aspect-ratio: 900 / 400;
    object-fit: cover;
    border-radius: 16px;
}

/* Responsive tweaks following design breakpoints */
@media (max-width: 1024px) {
    .campaign-detail-img {
        max-width: 100%;
    }

    .campaign-detail-img img {
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 768px) {
    .campaign-detail-img img {
        aspect-ratio: 4 / 3;
        border-radius: 12px;
    }
}

/* Header Section - Following Figma Design Exactly */
.blog-list-header {
    position: relative;
    width: 1440px;
    height: 284px;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.navigation-section-blog-list {
    position: absolute;
    top: 24px;
    right: 40px;
    z-index: 2;
}

.header-image {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.header-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Frame 1948758074 - Main Container */
.blog-header-main-frame {
    position: relative;
    width: 1440px;
    height: 282px;
    max-width: 100%;
}

/* Frame 1948758073 - Background and Pattern */
.blog-header-background-frame {
    position: relative;
    width: 1440px;
    height: 282px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: -315px;
}

/* Rectangle 2 - Red Background */
.blog-header-red-background {
    width: 100%;
    height: 282px;
    background: #CF0020;
}

/* Pattern Images */
.blog-header-pattern {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    opacity: 0.5;
    height: 100%;
}

.blog-header-pattern .pattern-image {
    width: 280px;
    height: 280px;
    flex-shrink: 0;
}

.blog-header-pattern .pattern-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Image 25 - Blurred Background Element */
.blog-header-image-25 {
    position: absolute;
    left: 0;
    top: 341.38px;
    width: 110.31px;
    height: 110.31px;
    filter: blur(4px);
}

.blog-header-image-25 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Frame 1948758070 - Title Section */
.blog-header-title-frame {
    position: absolute;
    left: 40px;
    top: 122px;
    display: flex;
    flex-direction: column;
    width: auto;
    height: auto;
}

/* Frame 1948758069 - Title Container with 12px gap */
.blog-header-title-container {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.blog-header-title {
    font-family: Inter, sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.5em;
    text-align: center;
    color: #FFFFFF;
    margin: 0;
}

.blog-header-subtitle {
    font-family: Cormorant Garamond, serif;
    font-weight: 700;
    font-size: 52px;
    line-height: 1.299999970656175em;
    text-align: center;
    color: #FFFFFF;
    margin: 0;
}

/* Mega Search Box */
.blog-header-search-box {
    position: absolute;
    right: 40px;
    top: 122px;
    width: 344px;
    height: 88px;
    background: linear-gradient(135deg, rgba(252, 252, 253, 1) 0%, rgba(252, 252, 253, 0.83) 100%);
    border: 1px solid #FCFCFD;
    border-radius: 8px;
    box-shadow: 0px 40px 64px -32px rgba(15, 15, 15, 0.1);
    backdrop-filter: blur(32px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 31px;
    padding: 40px;
}



.blog-search-logo {
    width: 283px;
    height: 40px;
}

.blog-search-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Image 23 - Bottom Banner */
.blog-header-bottom-banner {
    position: absolute;
    left: 0;
    top: 212px;
    width: 1440px;
    height: 72px;
    max-width: 100%;
}

.blog-header-bottom-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Blog Content Section */

/* Blog Card Large - Enhanced with Bootstrap compatibility */
.blog-card-large {
    background: linear-gradient(135deg, rgba(252, 252, 253, 1) 0%, rgba(252, 252, 253, 0.83) 100%);
    border: 1px solid #FCFCFD;
    border-radius: 8px;
    box-shadow: 0px 40px 64px -32px rgba(15, 15, 15, 0.1);
    backdrop-filter: blur(32px);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
}

.blog-card-large:hover {
    transform: translateY(-2px);
    box-shadow: 0px 50px 80px -40px rgba(15, 15, 15, 0.15);
}

.blog-card-large-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    height: calc(100% - 230px);
}

.blog-card-large-title {
    font-family: Inter, sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.5;
    color: #262626;
    margin: 0;
}

.blog-card-large-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-card-large-title a:hover {
    color: #CF0020;
}

.blog-card-large-excerpt {
    font-family: Noto Sans JP, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #414141;
    height: 129px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    flex-grow: 1;
}

.blog-card-large-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.meta-tags {
    display: flex;
    gap: 4px;
}

.category-tag {
    font-family: Noto Sans JP, sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.5;
    color: #8E8E8E;
    padding: 2px 6px;
    background: rgba(142, 142, 142, 0.1);
    border-radius: 4px;
}

.date-tag {
    font-family: Noto Sans JP, sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.5;
    color: #8E8E8E;
}

/* Pagination Section - Enhanced with Bootstrap */
.blog-pagination-section {
    margin-top: 40px;
    padding: 2px 0;
}

.pagination-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #EAECEE;
    border-radius: 6px;
    background: white;
    color: #262626;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
}

.pagination-btn:hover:not(.disabled) {
    background: #F8F9FA;
    border-color: #CFD4DA;
    transform: scale(1.05);
}

.pagination-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: white;
}

.pagination-btn svg {
    width: 16px;
    height: 16px;
}

/* Floating Elements */
.blog-list-floating-elements {
    position: fixed;
    right: 40px;
    bottom: 40px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.blog-list-floating-elements.visible {
    opacity: 1;
    transform: translateY(0);
}

.blog-list-float-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.blog-list-float-button {
    width: 76px;
    height: 76px;
    background: #DD1F01;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0px 40px 64px -32px rgba(15, 15, 15, 0.1);
    backdrop-filter: blur(32px);
}

.blog-list-float-button:hover {
    transform: scale(1.05);
    box-shadow: 0px 50px 80px -40px rgba(15, 15, 15, 0.15);
}

.blog-list-float-button img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.blog-list-back-to-top {
    background: #525252;
    border-radius: 6px;
    padding: 4px 12px;
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.blog-list-back-to-top:hover {
    background: #404040;
}

.blog-list-back-to-top-content {
    display: flex;
    align-items: center;
    gap: 4px;
}

.blog-list-back-to-top img {
    width: 24px;
    height: 24px;
}

.blog-list-back-to-top span {
    font-family: Inter, sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.5;
    color: #FFFFFF;
}

/* Breadcrumbs */


.breadcrumb-link {
    font-family: Inter, sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.5;
    color: #8E8E8E;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-link:hover {
    color: #CF0020;
}

.breadcrumb-current {
    font-family: Inter, sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.5;
    color: #020617;
}

.breadcrumb-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: #8E8E8E;
}

.breadcrumb-separator svg {
    width: 16px;
    height: 16px;
}

/* Top Navigation Bar (Mega Search Box) */
.blog-top-navigation {
    position: absolute;
    top: 24px;
    right: 40px;
    z-index: 10;
    width: 668px;
    height: 64px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #FCFCFD;
    border-radius: 8px;
    backdrop-filter: blur(32px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
}

.nav-menu-item {
    font-family: Inter, sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
    color: #262626;
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-menu-item:hover {
    color: #CF0020;
}

.nav-language-selector {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: Inter, sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #262626;
}

.nav-menu-button {
    background: #DD1F01;
    border-radius: 8px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.nav-menu-button:hover {
    background: #B81A00;
}

.nav-menu-button span {
    font-family: Inter, sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #FFFFFF;
}

.nav-menu-button svg {
    width: 24px;
    height: 24px;
    color: #FFFFFF;
}

/* No Posts Message */
.no-blog-posts p {
    font-family: Noto Sans JP, sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

/* Blog List Footer Background */
.footer-background.blog-list-footer {
    position: relative;
    width: 100%;
    height: auto;
    background-size: cover;
    background-position: center;
    margin-top: 0;
}

/* ===================================
   BANNER CAROUSEL SECTION (COPIED FROM MAIN.CSS)
   =================================== */

/* Banner Carousel Section */
.sbs-banner-carousel-section {
    position: relative;
    background-color: rgba(221, 31, 1, 0.5);
    padding: 60px 0 80px 0;
    overflow: hidden;
    margin-bottom: 0;
}

.sbs-banner-carousel-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    width: 100%;
    background-image: url('../images/footer-bg-section.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.banner-carousel-container {
    position: relative;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 40px;
    padding-bottom: 30px;
    z-index: 2;
}

.banner-carousel-track {
    display: flex;
    gap: 24px;
    animation: carousel-scroll 30s linear infinite;
    width: max-content;
}

@keyframes carousel-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.banner-item {
    flex: 0 0 339px;
    height: 198px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.banner-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.banner-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.banner-item:hover img {
    transform: scale(1.05);
}

/* Banner carousel image styles */
.banner-item {
    cursor: pointer;
}

.banner-item img {
    border-radius: 16px;
}

.banner-item.clicked {
    transform: scale(0.98);
    transition: transform 0.1s ease;
}

.header-section {
    position: relative;
    background-image: url('../images/header-bg-section.png');
    height: 284px;
    overflow: hidden;
    margin-bottom: 0;
}

.header-section> ::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 72px;
    width: 100%;
    background-image: url('../images/footer-bg-section.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.header-section-container {
    display: flex;
    justify-content: space-between;

}

.header-section-logo {
    padding: 24px 21px 24px 40px;
    width: auto;
    height: auto;
    display: inline-block;
    background: linear-gradient(83.59deg, #FCFCFD 36.52%, rgba(252, 252, 253, 0.83) 98.8%);
    border: 1px solid #FCFCFD;
    box-shadow: 0px 40px 64px -32px #0F0F0F1A;
    backdrop-filter: blur(32px);
}

.header-section-title {
    color: #FFFFFF;
    margin: 34px 0 0 40px;

}

.header-section-right .hero-circle-2 {
    width: 233px;
    height: 233px;
    position: absolute;
    top: 0;
    right: 0;
    margin: 62px 68px 11px 0;
}

.header-section-right .hero-circle {
    width: 95px;
    height: 95px;
    position: absolute;
    top: 0;
    right: 250px;
    margin: 160px 68px 11px 0;
}

/* Pause animation on hover */
.banner-carousel-track:hover {
    animation-play-state: paused;
}

/* Responsive Design for Banner Carousel */
@media (max-width: 1200px) {
    .banner-item {
        flex: 0 0 350px;
        height: 220px;
    }
}

@media (max-width: 1024px) {
    .banner-carousel-container {
        padding: 0 20px;
    }

    .banner-item {
        flex: 0 0 320px;
        height: 200px;
    }
}

@media (max-width: 768px) {
    .sbs-banner-carousel-section {
        padding: 40px 0 60px 0;
    }

    .sbs-banner-carousel-section::after {
        height: 60px;
        border-radius: 0 0 50% 50% / 0 0 80px 80px;
    }

    .banner-carousel-container {
        padding: 0 16px;
    }

    .banner-item {
        flex: 0 0 280px;
        height: 180px;
    }
}

@media (max-width: 480px) {
    .sbs-banner-carousel-section::after {
        height: 50px;
        border-radius: 0 0 50% 50% / 0 0 60px 60px;
    }

    .banner-item {
        flex: 0 0 260px;
        height: 160px;
    }
}

/* Responsive Design - Optimized for Bootstrap */
@media (max-width: 1200px) {
    .blog-list-header {
        width: 100%;
    }

    .blog-header-main-frame {
        width: 100%;
    }

    .blog-header-background-frame {
        width: 100%;
    }

    .blog-header-search-box {
        width: 300px;
        height: 76px;
        padding: 30px;
        right: 20px;
    }

    .blog-search-logo {
        width: 240px;
        height: 34px;
    }

    .blog-header-title-frame {
        left: 20px;
    }
}

@media (max-width: 768px) {
    .blog-list-header {
        height: 200px;
    }

    .blog-header-main-frame {
        height: 200px;
    }

    .blog-header-background-frame {
        height: 200px;
    }

    .blog-header-red-background {
        height: 200px;
    }

    .blog-header-title-frame {
        position: static;
        text-align: center;
        padding: 20px;
        margin: 0 auto;
    }

    .blog-header-subtitle {
        font-size: 36px;
    }

    .blog-header-search-box {
        position: static;
        width: 100%;
        max-width: 280px;
        margin: 20px auto;
        height: 60px;
        padding: 20px;
    }

    .blog-search-logo {
        width: 200px;
        height: 30px;
    }

    .blog-header-bottom-banner {
        position: static;
        width: 100%;
        height: 50px;
        margin-top: 10px;
    }

    .blog-header-pattern .pattern-image {
        width: 200px;
        height: 200px;
    }

    .blog-list-floating-elements {
        right: 20px;
        bottom: 20px;
    }

    .blog-list-float-button {
        width: 60px;
        height: 60px;
    }

    .blog-list-float-button img {
        width: 36px;
        height: 36px;
    }

    /* Adjust breadcrumbs for mobile with banner carousel */


    /* Adjust content height for mobile */
    .blog-list-content {
        min-height: calc(100vh - 200px - 240px);
        /* Mobile header + banner carousel */
    }
}

/* Bootstrap Override for Blog Cards */
@media (max-width: 768px) {
    .blog-card-large {
        margin-bottom: 1rem;
    }

    .blog-card-large-content {
        height: auto;
        min-height: 200px;
    }

    .blog-card-large-excerpt {
        height: auto;
        -webkit-line-clamp: 3;
    }
}

/* Small Outline Button (spec) */
.sbs-btn-outline-sm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 93px;
    height: 36px;
    padding-right: 12px;
    /* padding/px-3 */
    padding-left: 12px;
    /* padding/px-3 */
    background: var(--background, #FFFFFF);
    border: 1px solid var(--border, #E2E8F0);
    border-radius: 8px;
    /* radius-md */
    color: var(--foreground, #262626);
    font-size: 14px;
    line-height: 1;
    opacity: 1;
}

.sbs-btn-outline-sm svg {
    width: 16px;
    height: 16px;
    color: currentColor;
}

.sbs-btn-outline-sm:hover {
    background: #F8FAFC;
    border-color: #CBD5E1;
}

.sbs-btn-outline-sm:active {
    background: #EEF2F6;
    border-color: #B6C2CF;
}

.sbs-btn-outline-sm:disabled {
    opacity: 0.6;
    pointer-events: none;
}

/* ===================================
   CAMPAIGN CTA STYLES
   =================================== */

/* Campaign active period styling */
.campaign-active-period {
    margin-bottom: 16px;
    padding: 12px 16px;
    background: rgba(241, 76, 155, 0.1);
    border-left: 4px solid #f14c9b;
    border-radius: 0 8px 8px 0;
}

.period-label {
    display: inline-block;
    font-weight: 600;
    color: #f14c9b;
    margin-right: 16px;
    font-size: 14px;
}

/* Campaign CTA Container (no frame) */
.campaign-cta-container {
    margin: 24px 0;
    /* keep a bit of spacing */
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

/* CTA Button Base Styles */
.sbs-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: 'Noto Sans JP', 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
    text-transform: none;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.sbs-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.sbs-cta-button:active {
    transform: translateY(0);
    transition: transform 0.1s ease;
}

/* CTA Button Sizes */
.sbs-cta-button.cta-small {
    padding: 8px 16px;
    font-size: 14px;
    border-radius: 8px;
    gap: 6px;
}

.sbs-cta-button.cta-medium {
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 12px;
    gap: 8px;
}

.sbs-cta-button.cta-large {
    padding: 16px 32px;
    font-size: 18px;
    border-radius: 16px;
    gap: 10px;
}

.sbs-cta-button.cta-xl {
    padding: 20px 40px;
    font-size: 20px;
    border-radius: 20px;
    gap: 12px;
    font-weight: 700;
}

/* CTA Button Styles */
.sbs-cta-button.cta-primary {
    background: linear-gradient(135deg, #f14c9b, #e63a84);
    color: white;
    border: 2px solid transparent;
}

.sbs-cta-button.cta-primary:hover {
    background: linear-gradient(135deg, #e63a84, #d12971);
    color: white;
    transform: translateY(-3px);
}

.sbs-cta-button.cta-secondary {
    background: linear-gradient(135deg, #6c757d, #5a6268);
    color: white;
    border: 2px solid transparent;
}

.sbs-cta-button.cta-secondary:hover {
    background: linear-gradient(135deg, #5a6268, #495057);
    color: white;
}

.sbs-cta-button.cta-success {
    background: linear-gradient(135deg, #28a745, #1e7e34);
    color: white;
    border: 2px solid transparent;
}

.sbs-cta-button.cta-success:hover {
    background: linear-gradient(135deg, #1e7e34, #155724);
    color: white;
}

.sbs-cta-button.cta-warning {
    background: linear-gradient(135deg, #ffc107, #e0a800);
    color: #212529;
    border: 2px solid transparent;
}

.sbs-cta-button.cta-warning:hover {
    background: linear-gradient(135deg, #e0a800, #d39e00);
    color: #212529;
}

.sbs-cta-button.cta-info {
    background: linear-gradient(135deg, #17a2b8, #138496);
    color: white;
    border: 2px solid transparent;
}

.sbs-cta-button.cta-info:hover {
    background: linear-gradient(135deg, #138496, #0f6674);
    color: white;
}

.sbs-cta-button.cta-gradient {
    background: linear-gradient(135deg, #f14c9b 0%, #ff6b6b 25%, #4ecdc4 50%, #45b7d1 75%, #96ceb4 100%);
    color: white;
    border: 2px solid transparent;
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
}

.sbs-cta-button.cta-gradient:hover {
    background-size: 250% 250%;
    animation-duration: 2s;
    color: white;
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.sbs-cta-button.cta-outline {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #f14c9b;
    color: #f14c9b;
    backdrop-filter: blur(8px);
}

.sbs-cta-button.cta-outline:hover {
    background: #f14c9b;
    color: white;
    border-color: #f14c9b;
}

/* CTA Icon Styles */
.sbs-cta-button .cta-icon {
    font-size: 1.2em;
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

.sbs-cta-button.cta-small .cta-icon {
    font-size: 1.1em;
}

.sbs-cta-button.cta-large .cta-icon,
.sbs-cta-button.cta-xl .cta-icon {
    font-size: 1.3em;
}

/* CTA Text Styles */
.sbs-cta-button .cta-text {
    display: inline-flex;
    align-items: center;
    line-height: 1.2;
    white-space: nowrap;
}

/* CTA Animations */
.sbs-cta-button.cta-pulse {
    animation: cta-pulse 2s ease-in-out infinite;
}

@keyframes cta-pulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.sbs-cta-button.cta-bounce {
    animation: cta-bounce 2s ease-in-out infinite;
}

@keyframes cta-bounce {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.sbs-cta-button.cta-shake {
    animation: cta-shake 0.8s ease-in-out infinite;
}

@keyframes cta-shake {
    0%, 100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-4px);
    }

    75% {
        transform: translateX(4px);
    }
}

.sbs-cta-button.cta-glow {
    animation: cta-glow 2s ease-in-out infinite alternate;
}

@keyframes cta-glow {
    0% {
        box-shadow: 0 4px 16px rgba(241, 76, 155, 0.3);
    }

    100% {
        box-shadow: 0 8px 32px rgba(241, 76, 155, 0.6), 0 0 20px rgba(241, 76, 155, 0.4);
    }
}

/* Responsive CTA Styles */
@media (max-width: 768px) {
    .campaign-cta-container {
        margin: 24px 0;
        padding: 20px 16px;
        border-radius: 12px;
    }

    .sbs-cta-button.cta-large {
        padding: 14px 28px;
        font-size: 16px;
    }

    .sbs-cta-button.cta-xl {
        padding: 16px 32px;
        font-size: 18px;
    }

    .sbs-cta-button .cta-text {
        white-space: normal;
        text-align: center;
        line-height: 1.3;
    }
}

@media (max-width: 480px) {
    .campaign-cta-container {
        margin: 20px 0;
        padding: 16px 12px;
    }

    .sbs-cta-button {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .sbs-cta-button.cta-medium {
        padding: 12px 20px;
        font-size: 15px;
    }

    .sbs-cta-button.cta-large {
        padding: 14px 24px;
        font-size: 16px;
    }

    .sbs-cta-button.cta-xl {
        padding: 16px 28px;
        font-size: 17px;
    }
}

/* CTA Tracking and Analytics */
.sbs-cta-button[data-cta-click] {
    position: relative;
}

.sbs-cta-button[data-cta-click]::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
    transition: background 0.2s ease;
}

.sbs-cta-button[data-cta-click]:active::after {
    background: rgba(255, 255, 255, 0.2);
}

/* Read More Button */
.read-more-wrapper {
    margin: 20px 0;
}

.read-more-btn {
    display: inline-block;
    padding: 10px 25px;
    border: 1px solid #EAECEE;
    background-color: #FFFFFF;
    color: #262626;
    cursor: pointer;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.read-more-btn:hover {
    background-color: #f8f9fa;
    border-color: #CFD4DA;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.more-content {
    margin-top: 20px;
    text-align: left;
}