/**
 * SC Widget Elementor - Frontend Styles
 * Version: 1.0.0
 */

/* ============================================
   Base Styles
   ============================================ */

.sc-widget {
    box-sizing: border-box;
}

.sc-widget *,
.sc-widget *::before,
.sc-widget *::after {
    box-sizing: inherit;
}

/* ============================================
   SC Scroll Down Widget
   ============================================ */

.sc-scroll-down-wrapper {
    display: flex;
    width: 100%;
}

.sc-scroll-down-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sc-scroll-down-link:hover {
    opacity: 0.8;
}

.sc-scroll-down-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 2px;
    color: #6b8a9a;
    margin-bottom: 15px;
}

.sc-scroll-down-line {
    display: block;
    width: 2px;
    height: 80px;
    background-color: #6b8a9a;
    margin-bottom: 10px;
}

.sc-scroll-down-arrows {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: -8px;
}

.sc-scroll-down-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

.sc-scroll-down-arrow svg {
    width: 24px;
    height: 24px;
    fill: #6b8a9a;
}

/* Animation */
.sc-scroll-down-link.sc-animated .sc-scroll-down-arrow {
    animation: sc-bounce-arrow 1.5s ease-in-out infinite;
}

@keyframes sc-bounce-arrow {
    0%, 100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(5px);
        opacity: 0.6;
    }
}

/* ============================================
   SC FAQ Accordion Widget
   ============================================ */

.sc-faq-accordion {
    width: 100%;
}

.sc-faq-item {
    background-color: #ffffff;
    transition: all 0.3s ease;
    overflow: hidden;
}

.sc-faq-item.active {
    background-color: #456268;
}

.sc-faq-header {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sc-faq-header:hover {
    opacity: 0.9;
}

.sc-faq-text-wrapper {
    flex: 1;
    min-width: 0;
}

.sc-faq-icon {
    font-size: 20px;
    font-weight: 300;
    color: #6b8a9a;
    flex-shrink: 0;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.sc-faq-item.active .sc-faq-icon {
    color: #ffffff;
}

.sc-faq-icon-open {
    display: none;
}

.sc-faq-item.active .sc-faq-icon-closed {
    display: none;
}

.sc-faq-item.active .sc-faq-icon-open {
    display: flex;
}

.sc-faq-icon i,
.sc-faq-icon svg {
    width: 100%;
    height: 100%;
}

.sc-faq-title {
    margin: 0 0 10px 0;
    font-size: 16px;
    font-weight: 500;
    color: #2c3e50;
    transition: color 0.3s ease;
}

.sc-faq-item.active .sc-faq-title {
    color: #ffffff;
}

.sc-faq-content {
    max-height: 0;
    overflow: hidden;
    padding: 0;
    color: #2c3e50;
    font-size: 14px;
    line-height: 1.7;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.sc-faq-item.active .sc-faq-content {
    max-height: 1000px;
    padding-top: 5px;
    color: #ffffff;
}

/* ============================================
   SC Image Slider Widget
   ============================================ */

.sc-slider-wrapper {
    position: relative;
    background-color: #2c3e50;
    padding: 20px;
    border-radius: 10px;
}

.sc-slider-container {
    position: relative;
    overflow: hidden;
    height: 400px;
}

.sc-slider-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.sc-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.sc-slide.active {
    opacity: 1;
    z-index: 1;
}

.sc-slide-image {
    width: 100%;
    height: 100%;
}

.sc-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.sc-slider-nav {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.sc-slider-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #2c3e50;
    background-color: #ffffff;
    color: #2c3e50;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.sc-slider-arrow:hover {
    background-color: #2c3e50;
    color: #ffffff;
}

.sc-slider-arrow i,
.sc-slider-arrow svg {
    font-size: 18px;
    width: 18px;
    height: 18px;
}

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

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

.sc-slider-dot.active,
.sc-slider-dot:hover {
    background-color: #ffffff;
}

/* ============================================
   SC Blog Cards Widget
   ============================================ */

.sc-blog-cards {
    width: 100%;
    display: block;
}

.sc-blog-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    gap: 25px;
    padding: 25px 0;
    border-bottom: 1px solid #e8e8e8;
    transition: all 0.3s ease;
}

.sc-blog-card:first-child {
    padding-top: 0;
}

.sc-blog-card:last-child {
    border-bottom: none;
}

.sc-blog-card-image {
    width: 200px;
    min-width: 200px;
    max-width: 200px;
    height: 140px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 200px;
    flex: 0 0 200px;
    overflow: hidden;
    border-radius: 8px;
}

.sc-blog-card-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.sc-blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
    display: block;
}

.sc-blog-card:hover .sc-blog-card-image img {
    transform: scale(1.03);
}

.sc-blog-card-content {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
}

.sc-blog-card-title {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    color: #2c3e50;
}

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

.sc-blog-card-title a:hover {
    color: #6b8a9a;
}

.sc-blog-card-excerpt {
    margin: 0 0 15px 0;
    font-size: 14px;
    line-height: 1.6;
    color: #666666;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.sc-blog-card-meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: auto;
}

.sc-blog-card-date {
    font-size: 13px;
    color: #999999;
}

.sc-blog-card-arrow {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    border: 1px solid #6b8a9a;
    background-color: transparent;
    color: #6b8a9a;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sc-blog-card:hover .sc-blog-card-arrow {
    background-color: #6b8a9a;
    border-color: #6b8a9a;
    color: #ffffff;
}

/* ============================================
   SC Section Header Widget
   ============================================ */

.sc-section-header {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 60px;
    background-color: #f5f7f8;
    padding: 50px 60px;
    border-radius: 0;
    width: 100%;
}

.sc-section-header-title-wrap {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    min-width: 180px;
}

.sc-section-header-title {
    margin: 0;
    font-size: 48px;
    font-weight: 300;
    font-style: italic;
    line-height: 1.1;
    color: #2c3e50;
}

.sc-section-header-title-line {
    display: block;
}

.sc-section-header-content {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 12px;
}

.sc-section-header-description {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: #6b8a9a;
    max-width: 400px;
}

.sc-section-header-btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sc-section-header-btn-text {
    font-size: 14px;
    font-weight: 500;
    color: #456268;
    transition: color 0.3s ease;
}

.sc-section-header-btn-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #456268;
    color: #ffffff;
    transition: all 0.3s ease;
}

.sc-section-header-btn-icon i,
.sc-section-header-btn-icon svg {
    font-size: 12px;
    width: 12px;
    height: 12px;
}

.sc-section-header-btn:hover .sc-section-header-btn-text {
    color: #2c3e50;
}

.sc-section-header-btn:hover .sc-section-header-btn-icon {
    background-color: #2c3e50;
}

/* ============================================
   SC Checklist Widget
   ============================================ */

.sc-checklist {
    width: 100%;
}

.sc-checklist-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.sc-checklist-has-divider .sc-checklist-item:not(:last-child) {
    border-bottom: 1px solid #e8e8e8;
    border-bottom-style: solid;
}

.sc-checklist-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid #456268;
    background-color: transparent;
    color: #456268;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    transition: all 0.3s ease;
}

.sc-checklist-icon i,
.sc-checklist-icon svg {
    font-size: 12px;
    width: 12px;
    height: 12px;
}

.sc-checklist-text {
    font-size: 15px;
    font-weight: 400;
    color: #2c3e50;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    transition: color 0.3s ease;
}

.sc-checklist-text a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sc-checklist-item:hover .sc-checklist-text,
.sc-checklist-text a:hover {
    color: #456268;
}

/* ============================================
   SC Blog Style 2 Widget
   ============================================ */

.sc-blog-2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 50px;
    width: 100%;
}

.sc-blog-2-list {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 45%;
    flex: 0 0 45%;
    max-width: 45%;
}

.sc-blog-2-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #e8e8e8;
    transition: all 0.3s ease;
}

.sc-blog-2-item:first-child {
    padding-top: 0;
}

.sc-blog-2-item:last-child {
    border-bottom: none;
}

.sc-blog-2-item-content {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.sc-blog-2-item-title {
    display: block;
    margin: 0 0 6px 0;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.4;
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

a.sc-blog-2-item-title:hover {
    color: #456268;
}

.sc-blog-2-item-date {
    display: block;
    font-size: 13px;
    font-style: italic;
    color: #999999;
}

.sc-blog-2-item-arrow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    border: 1px solid #6b8a9a;
    background-color: transparent;
    color: #6b8a9a;
    text-decoration: none;
    transition: all 0.3s ease;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.sc-blog-2-item-arrow i,
.sc-blog-2-item-arrow svg {
    font-size: 14px;
    width: 14px;
    height: 14px;
}

.sc-blog-2-item:hover .sc-blog-2-item-arrow {
    background-color: #456268;
    border-color: #456268;
    color: #ffffff;
}

.sc-blog-2-item:hover .sc-blog-2-item-arrow svg {
    fill: #ffffff;
}

.sc-blog-2-featured {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.sc-blog-2-featured-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    margin-bottom: 20px;
}

.sc-blog-2-featured-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.sc-blog-2-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.sc-blog-2-featured-image:hover img {
    transform: scale(1.03);
}

.sc-blog-2-featured-content {
    padding: 0;
}

.sc-blog-2-featured-title {
    display: block;
    margin: 0 0 12px 0;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

a.sc-blog-2-featured-title:hover {
    color: #456268;
}

.sc-blog-2-featured-excerpt {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #666666;
}

/* Blog Style 2 - Active States & Transitions */
.sc-blog-2-item {
    cursor: pointer;
}

.sc-blog-2-item.active {
    background-color: rgba(69, 98, 104, 0.05);
}

.sc-blog-2-item.active .sc-blog-2-item-title {
    color: #456268;
}

.sc-blog-2-item.active .sc-blog-2-item-arrow {
    background-color: #456268;
    border-color: #456268;
    color: #ffffff;
}

.sc-blog-2-item.active .sc-blog-2-item-arrow svg {
    fill: #ffffff;
}

.sc-blog-2-featured {
    transition: opacity 0.2s ease;
}

.sc-blog-2-featured.sc-blog-2-transitioning {
    opacity: 0.5;
}

.sc-blog-2-featured-image img {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.sc-blog-2-featured-title {
    transition: opacity 0.3s ease;
}

.sc-blog-2-featured-excerpt {
    transition: opacity 0.3s ease;
}

.sc-blog-2-featured-link {
    display: block;
    width: 100%;
    height: 100%;
}

/* ============================================
   SC Horizontal Accordion Widget
   ============================================ */

.sc-h-accordion {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    width: 100%;
    height: 280px;
    overflow: hidden;
    border-radius: 0;
}

.sc-h-accordion-item {
    position: relative;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 80px;
    flex: 0 0 80px;
    cursor: pointer;
    overflow: hidden;
    background-color: var(--tab-bg, #d9d5cf);
    transition: flex 0.5s ease;
}

.sc-h-accordion-item.active {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    cursor: default;
}

.sc-h-accordion-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.sc-h-accordion-item.active .sc-h-accordion-bg {
    opacity: 1;
}

.sc-h-accordion-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--tab-overlay, rgba(45, 62, 80, 0.7));
    opacity: 0;
    transition: opacity 0.5s ease;
}

.sc-h-accordion-item.active .sc-h-accordion-overlay {
    opacity: 1;
}

.sc-h-accordion-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 40px;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
    transition: opacity 0.4s ease 0.2s, transform 0.4s ease 0.2s, visibility 0.4s ease 0.2s;
    z-index: 2;
}

.sc-h-accordion-item.active .sc-h-accordion-content {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

.sc-h-accordion-title {
    margin: 0 0 15px 0;
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.3;
}

.sc-h-accordion-text {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.7;
    max-width: 600px;
}

.sc-h-accordion-tab {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1;
}

.sc-h-accordion-item.active .sc-h-accordion-tab {
    opacity: 0;
    visibility: hidden;
}

.sc-h-accordion-tab-title {
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    font-size: 16px;
    font-weight: 500;
    color: #456268;
    letter-spacing: 1px;
    white-space: nowrap;
}

.sc-h-accordion-item:not(.active):hover {
    background-color: var(--tab-bg, #ccc9c3);
    filter: brightness(0.95);
}

/* ============================================
   SC Info Box Widget
   ============================================ */

.sc-info-box {
    background-color: #f5f5f5;
    padding: 30px;
}

.sc-info-box-item {
    margin-bottom: 25px;
}

.sc-info-box-item:last-child {
    margin-bottom: 0;
}

.sc-info-box-label {
    font-size: 13px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.sc-info-box-label.sc-uppercase {
    text-transform: uppercase;
}

.sc-info-box-content {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    color: #666666;
}

.sc-info-box-content a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sc-info-box-content a:hover {
    color: #456268;
}

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

@media (max-width: 767px) {
    /* Scroll Down */
    .sc-scroll-down-text {
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .sc-scroll-down-line {
        height: 50px;
    }

    .sc-scroll-down-arrow svg {
        width: 20px;
        height: 20px;
    }

    /* FAQ */
    .sc-faq-header {
        padding: 15px 20px;
        gap: 15px;
    }

    .sc-faq-title {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .sc-faq-content {
        font-size: 13px;
    }

    .sc-faq-icon {
        width: 20px;
        height: 20px;
        font-size: 18px;
    }

    /* Slider */
    .sc-slider-wrapper {
        padding: 15px;
    }

    .sc-slider-container {
        height: 250px;
    }

    .sc-slider-arrow {
        width: 40px;
        height: 40px;
    }

    .sc-slider-arrow i,
    .sc-slider-arrow svg {
        font-size: 14px;
        width: 14px;
        height: 14px;
    }

    /* Blog Cards */
    .sc-blog-card {
        flex-direction: column;
        gap: 15px;
    }

    .sc-blog-card-image {
        width: 100%;
        min-width: 100%;
        height: 200px;
    }

    .sc-blog-card-title {
        font-size: 16px;
    }

    .sc-blog-card-excerpt {
        font-size: 13px;
    }

    /* Section Header */
    .sc-section-header {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important;
        gap: 20px;
        padding: 30px 20px;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .sc-section-header-title-wrap {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        min-width: auto;
    }

    .sc-section-header-title {
        font-size: 32px;
    }

    .sc-section-header-description {
        font-size: 13px;
        max-width: 100%;
    }

    .sc-section-header-btn-text {
        font-size: 13px;
    }

    .sc-section-header-btn-icon {
        width: 32px;
        height: 32px;
    }

    /* Checklist */
    .sc-checklist-item {
        padding: 15px;
        gap: 10px;
    }

    .sc-checklist-icon {
        width: 22px;
        height: 22px;
    }

    .sc-checklist-icon i,
    .sc-checklist-icon svg {
        font-size: 10px;
        width: 10px;
        height: 10px;
    }

    .sc-checklist-text {
        font-size: 14px;
    }

    /* Blog Style 2 */
    .sc-blog-2 {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 40px;
    }

    .sc-blog-2-list {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }

    .sc-blog-2-featured {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }

    .sc-blog-2-featured-image {
        height: 220px;
    }

    .sc-blog-2-item-title {
        font-size: 15px;
    }

    .sc-blog-2-featured-title {
        font-size: 18px;
    }

    .sc-blog-2-featured-excerpt {
        font-size: 13px;
    }

    /* Horizontal Accordion */
    .sc-h-accordion {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        height: auto;
    }

    .sc-h-accordion-item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 60px;
        flex: 0 0 60px;
        height: 60px;
    }

    .sc-h-accordion-item.active {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 250px;
        flex: 0 0 250px;
        height: 250px;
    }

    .sc-h-accordion-content {
        padding: 25px;
    }

    .sc-h-accordion-title {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .sc-h-accordion-text {
        font-size: 13px;
    }

    .sc-h-accordion-tab-title {
        -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
        writing-mode: horizontal-tb;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        font-size: 14px;
    }

    /* Info Box */
    .sc-info-box {
        padding: 25px 20px;
    }

    .sc-info-box-item {
        margin-bottom: 20px;
    }

    .sc-info-box-label {
        font-size: 12px;
    }

    .sc-info-box-content {
        font-size: 14px;
    }
}

/* ============================================
   SC Media Center Widget
   ============================================ */

.sc-media-center {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.sc-media-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.sc-media-slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.sc-media-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.sc-media-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.sc-media-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 50%);
    z-index: 1;
}

.sc-media-badge {
    position: absolute;
    top: 30px;
    left: 30px;
    display: inline-block;
    padding: 8px 20px;
    background-color: #456268;
    color: #ffffff;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.sc-media-slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    z-index: 2;
}

.sc-media-date {
    display: block;
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 12px;
}

.sc-media-post-title {
    margin: 0 0 20px 0;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.3;
    color: #ffffff;
    max-width: 450px;
}

.sc-media-readmore {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sc-media-readmore:hover {
    color: #ffffff;
}

.sc-media-readmore-arrow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background-color: #c9a961;
    transition: all 0.3s ease;
}

.sc-media-readmore:hover .sc-media-readmore-arrow {
    background-color: #b8983f;
}

.sc-media-readmore-arrow svg {
    width: 16px;
    height: 16px;
    stroke: #ffffff;
}

.sc-media-nav {
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    z-index: 3;
}

.sc-media-nav-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.sc-media-nav-btn:hover {
    background-color: #c9a961;
}

.sc-media-nav-btn svg {
    width: 20px;
    height: 20px;
}

/* ============================================
   SC Blog Grid Widget
   ============================================ */

.sc-blog-grid-wrapper {
    width: 100%;
}

.sc-blog-filter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.sc-blog-filter-btn {
    padding: 10px 20px;
    background-color: transparent;
    border: none;
    color: #666666;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.sc-blog-filter-btn:hover {
    color: #456268;
}

.sc-blog-filter-btn.active {
    background-color: #f5f5f5;
    color: #456268;
}

.sc-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.sc-blog-grid .sc-blog-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    padding: 0;
    border: none;
}

.sc-blog-grid .sc-blog-card:hover {
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.12);
    -webkit-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    transform: translateY(-3px);
}

.sc-blog-grid .sc-blog-card-image {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    height: 200px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 200px;
    flex: 0 0 200px;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

.sc-blog-grid .sc-blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 0;
}

.sc-blog-grid .sc-blog-card:hover .sc-blog-card-image img {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}

.sc-blog-grid .sc-blog-card-placeholder {
    width: 100%;
    height: 100%;
    background-color: #e0e0e0;
    display: block;
}

.sc-blog-grid .sc-blog-card-content {
    padding: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.sc-blog-grid .sc-blog-card-title {
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    color: #2c3e50;
}

.sc-blog-grid .sc-blog-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sc-blog-grid .sc-blog-card-title a:hover {
    color: #456268;
}

.sc-blog-grid .sc-blog-card-excerpt {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #666666;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    margin-bottom: 15px;
}

.sc-blog-grid .sc-blog-card-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: auto;
}

.sc-blog-grid .sc-blog-card-date {
    font-size: 13px;
    color: #999999;
}

.sc-blog-grid .sc-blog-card-arrow {
    min-width: 40px;
    height: 40px;
    border-radius: 50px;
    background-color: #456268;
    color: #ffffff;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 8px;
    padding: 0 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.sc-blog-grid .sc-blog-card-arrow-text {
    display: inline-block;
}

.sc-blog-grid .sc-blog-card-arrow-icon {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.sc-blog-grid .sc-blog-card-arrow:hover {
    background-color: #c9a961;
}

.sc-blog-grid .sc-blog-card-arrow svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
}

.sc-blog-loadmore-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 40px;
}

.sc-blog-loadmore-btn {
    padding: 12px 40px;
    background-color: transparent;
    border: 2px solid #456268;
    color: #456268;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.sc-blog-loadmore-btn:hover {
    background-color: #456268;
    color: #ffffff;
}

.sc-blog-loadmore-btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

.sc-blog-loadmore-btn.hidden {
    display: none;
}

/* Blog Grid Loader */
.sc-blog-grid.sc-loading {
    position: relative;
    min-height: 300px;
}

.sc-blog-grid.sc-loading .sc-blog-card {
    opacity: 0.3;
    pointer-events: none;
}

.sc-blog-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 10;
}

.sc-blog-loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid #f0f0f0;
    border-top-color: #456268;
    border-radius: 50%;
    -webkit-animation: scSpin 0.8s linear infinite;
    animation: scSpin 0.8s linear infinite;
}

@-webkit-keyframes scSpin {
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes scSpin {
    to {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/* Button spinner */
.sc-btn-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid currentColor;
    border-top-color: transparent;
    border-radius: 50%;
    -webkit-animation: scSpin 0.8s linear infinite;
    animation: scSpin 0.8s linear infinite;
    margin-right: 8px;
    vertical-align: middle;
}

.sc-blog-loadmore-btn.loading {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

/* Blog Grid Animation */
.sc-blog-grid .sc-blog-card {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.sc-blog-grid .sc-blog-card.sc-hidden {
    display: none;
}

.sc-blog-grid .sc-blog-card.sc-fade-in {
    -webkit-animation: scFadeInUp 0.4s ease forwards;
    animation: scFadeInUp 0.4s ease forwards;
}

@-webkit-keyframes scFadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes scFadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

/* ============================================
   Responsive - Media Center & Blog Grid
   ============================================ */

@media (max-width: 991px) {
    /* Media Center */
    .sc-media-center {
        height: 400px;
    }

    .sc-media-post-title {
        font-size: 24px;
    }

    /* Blog Grid */
    .sc-blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 767px) {
    /* Media Center */
    .sc-media-center {
        height: 350px;
    }

    .sc-media-badge {
        top: 20px;
        left: 20px;
        padding: 6px 14px;
        font-size: 10px;
    }

    .sc-media-slide-content {
        padding: 25px;
    }

    .sc-media-post-title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .sc-media-date {
        font-size: 12px;
    }

    .sc-media-readmore {
        font-size: 13px;
    }

    .sc-media-readmore-arrow {
        width: 35px;
        height: 35px;
    }

    .sc-media-nav {
        bottom: 25px;
        right: 25px;
    }

    .sc-media-nav-btn {
        width: 40px;
        height: 40px;
    }

    /* Blog Grid */
    .sc-blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .sc-blog-filter {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        gap: 8px;
        margin-bottom: 30px;
        overflow-x: auto;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        padding-bottom: 10px;
    }

    .sc-blog-filter-btn {
        padding: 8px 16px;
        font-size: 13px;
        white-space: nowrap;
    }

    .sc-blog-grid .sc-blog-card-image {
        height: 180px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 180px;
        flex: 0 0 180px;
    }

    .sc-blog-grid .sc-blog-card-title {
        font-size: 16px;
    }

    .sc-blog-grid .sc-blog-card-excerpt {
        font-size: 13px;
    }

    .sc-blog-loadmore-btn {
        padding: 10px 30px;
        font-size: 13px;
    }
}

/* ============================================
   SC Blog Cards Stack Widget
   ============================================ */

.sc-cards-stack-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 40px 20px;
    -webkit-perspective: 1000px;
    perspective: 1000px;
}

.sc-cards-stack {
    position: relative;
    width: 300px;
    height: 400px;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.sc-stack-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    will-change: transform;
}

/* Stacked cards positioning */
.sc-stack-card:nth-child(1) {
    z-index: 5;
}

.sc-stack-card:nth-child(2) {
    z-index: 4;
    -webkit-transform: translateY(8px) translateX(8px) rotate(2deg) scale(0.98);
    -ms-transform: translateY(8px) translateX(8px) rotate(2deg) scale(0.98);
    transform: translateY(8px) translateX(8px) rotate(2deg) scale(0.98);
}

.sc-stack-card:nth-child(3) {
    z-index: 3;
    -webkit-transform: translateY(16px) translateX(16px) rotate(4deg) scale(0.96);
    -ms-transform: translateY(16px) translateX(16px) rotate(4deg) scale(0.96);
    transform: translateY(16px) translateX(16px) rotate(4deg) scale(0.96);
}

.sc-stack-card:nth-child(4) {
    z-index: 2;
    -webkit-transform: translateY(24px) translateX(24px) rotate(6deg) scale(0.94);
    -ms-transform: translateY(24px) translateX(24px) rotate(6deg) scale(0.94);
    transform: translateY(24px) translateX(24px) rotate(6deg) scale(0.94);
}

.sc-stack-card:nth-child(5) {
    z-index: 1;
    -webkit-transform: translateY(32px) translateX(32px) rotate(8deg) scale(0.92);
    -ms-transform: translateY(32px) translateX(32px) rotate(8deg) scale(0.92);
    transform: translateY(32px) translateX(32px) rotate(8deg) scale(0.92);
}

.sc-stack-card:nth-child(n+6) {
    z-index: 0;
    opacity: 0;
    pointer-events: none;
}

/* Active card state */
.sc-stack-card.active {
    z-index: 10;
    -webkit-transform: translateY(0) translateX(0) rotate(0deg) scale(1);
    -ms-transform: translateY(0) translateX(0) rotate(0deg) scale(1);
    transform: translateY(0) translateX(0) rotate(0deg) scale(1);
}

/* Swipe animation */
.sc-stack-card.swiping-left {
    -webkit-animation: swipeLeft 0.4s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    animation: swipeLeft 0.4s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.sc-stack-card.swiping-right {
    -webkit-animation: swipeRight 0.4s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    animation: swipeRight 0.4s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@-webkit-keyframes swipeLeft {
    0% {
        -webkit-transform: translateX(0) rotate(0deg);
        transform: translateX(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        -webkit-transform: translateX(-150%) rotate(-20deg);
        transform: translateX(-150%) rotate(-20deg);
        opacity: 0;
    }
}

@keyframes swipeLeft {
    0% {
        -webkit-transform: translateX(0) rotate(0deg);
        -ms-transform: translateX(0) rotate(0deg);
        transform: translateX(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        -webkit-transform: translateX(-150%) rotate(-20deg);
        -ms-transform: translateX(-150%) rotate(-20deg);
        transform: translateX(-150%) rotate(-20deg);
        opacity: 0;
    }
}

@-webkit-keyframes swipeRight {
    0% {
        -webkit-transform: translateX(0) rotate(0deg);
        transform: translateX(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        -webkit-transform: translateX(150%) rotate(20deg);
        transform: translateX(150%) rotate(20deg);
        opacity: 0;
    }
}

@keyframes swipeRight {
    0% {
        -webkit-transform: translateX(0) rotate(0deg);
        -ms-transform: translateX(0) rotate(0deg);
        transform: translateX(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        -webkit-transform: translateX(150%) rotate(20deg);
        -ms-transform: translateX(150%) rotate(20deg);
        transform: translateX(150%) rotate(20deg);
        opacity: 0;
    }
}

/* Card Image */
.sc-stack-card-image {
    width: 100%;
    height: 55%;
    overflow: hidden;
}

.sc-stack-card-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: -webkit-transform 0.4s ease;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.sc-stack-card:hover .sc-stack-card-image img {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}

.sc-stack-card-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e8e8e8 0%, #d4d4d4 100%);
}

/* Card Content */
.sc-stack-card-content {
    padding: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 45%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.sc-stack-card-title {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    color: #2c3e50;
}

.sc-stack-card-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.sc-stack-card-date {
    font-size: 13px;
    color: #999999;
}

.sc-stack-card-readmore {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
    color: #2c3e50;
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.sc-stack-card-readmore:hover {
    color: #456268;
}

.sc-stack-card-arrow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #c9a961;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.sc-stack-card-readmore:hover .sc-stack-card-arrow {
    background-color: #b8983f;
    -webkit-transform: translateX(3px);
    -ms-transform: translateX(3px);
    transform: translateX(3px);
}

.sc-stack-card-arrow svg {
    width: 14px;
    height: 14px;
    stroke: #ffffff;
}

/* Responsive */
@media (max-width: 767px) {
    .sc-cards-stack-wrapper {
        padding: 30px 15px;
    }

    .sc-cards-stack {
        width: 260px;
        height: 350px;
    }

    .sc-stack-card-content {
        padding: 15px;
    }

    .sc-stack-card-title {
        font-size: 14px;
    }

    .sc-stack-card-date {
        font-size: 12px;
    }

    .sc-stack-card-readmore {
        font-size: 12px;
    }
}
