.satellite-section {
    padding: 100px 0;
}

.satellite-section .satellite-grid {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.satellite-section .satellite-card {
    flex: 1;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.satellite-section .card-image-wrap {
    width: 100%;
    height: 315px;
    overflow: hidden;
    display: block;
    border-radius: 10px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.satellite-section .card-image-wrap img {
    width: 100%;
    height: 315px;
    display: block;
    object-fit: cover;
    object-position: center center;
    transition: all 0.3s;
}

.satellite-section .satellite-card.expanded .card-image-wrap {
    height: 98px;
}

.satellite-section .satellite-card.expanded .card-image-wrap img {
    height: 100%;
    transition: all 0.3s;
}

.satellite-section .card-body {
    padding: 24px 24px;
    padding-bottom: 37px;
    display: flex;
    flex-direction: column;
    background: #F8F9FA;
    margin-top: 12px;
    border-radius: 10px;
    /* transition: padding 0.3s ease-out; */
}

.satellite-section .expanded .card-body {
    padding: 40px 24px;
    padding-bottom: 55px;
}

.satellite-section .card-icon img {
    width: 60px;
    height: auto;
    margin-bottom: 24px;
}

.satellite-section .card-title {
    margin-bottom: 6px;
}

.satellite-section .card-subtitle-main {
    margin-bottom: 25px;
}

.satellite-section .card-content {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.satellite-section .satellite-card.expanded .card-content {
    grid-template-rows: 1fr;
    opacity: 1;
}

.satellite-section .card-content-inner {
    overflow: hidden;
}

.satellite-section .highlight-item {
    margin-bottom: 25px;
}

.satellite-section .hl-title {
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #000;
}

.satellite-section .hl-desc {
    font-size: 14px;
    line-height: 20px;
}

.satellite-section .features-label {
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    margin: 23px 0 7px;
}

.satellite-section .card-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.satellite-section .card-features li {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
}

.satellite-section .check-icon {
    color: #e65c00;
    margin-right: 10px;
    font-weight: bold;
    flex-shrink: 0;
}

.satellite-section .btn-action {
    width: 100%;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 12px;
}

.satellite-section .card-footer-toggle {
    margin-top: 24px;
}

.satellite-section .open .card-footer-toggle {
    margin-top: 24px !important;
}

.satellite-section .toggle-trigger {
    background: none;
    border: none;
    cursor: pointer;
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 18px;
    text-transform: capitalize;
}

.toggle-trigger span {
    position: relative;
}

.toggle-trigger span::after {
    content: '';
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
    background-repeat: no-repeat;
    background-size: cover;
    width: 13px;
    height: 7px;
}

.toggle-trigger span.text-show::after {
    background-image: url('../images/down.svg');
}

.toggle-trigger span.text-hide::after {
    background-image: url('../images/up.svg');
}

.satellite-section .text-hide {
    display: none;
}

.satellite-section .satellite-card.expanded .text-show {
    display: none;
}

.satellite-section .satellite-card.expanded .text-hide {
    display: inline-block;
}

.satellite-section .mobile-tabs-nav {
    display: none;
}

#block-0.expanded .card-footer-toggle {
    margin-top: 24px;
}

#block-0 .card-footer-toggle {
    margin-top: var(--margin-top);
}

.satellite-section .satellite-card.expanded .card-footer-toggle {
    margin-top: var(--margin-top) !important;
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    40% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

@media (max-width: 991px) {
    .satellite-section .btn-action {
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media (max-width: 768px) {
    .satellite-section .satellite-grid {
        display: block;
    }

    .satellite-section .satellite-card {
        display: none;
    }

    .satellite-section .satellite-card.active-tab {
        display: block;
    }

    .satellite-section .satellite-card.active-tab .card-content {
        display: block;
        opacity: 1;
    }

    .satellite-section .satellite-card.active-tab .card-image-wrap {
        height: 254px;
    }

    .satellite-section .satellite-card.active-tab .card-image-wrap img {
        height: 100%;
    }

    .satellite-section .card-footer-toggle {
        display: none;
    }

    .satellite-section .mobile-tabs-nav {
        display: flex;
        gap: 26px;
        margin-bottom: 28px;
        overflow-x: auto;
        padding-bottom: 0;
    }

    .satellite-section .tab-btn {
        border: none;
        background: none;
        font-weight: 600;
        border-bottom: 1px solid transparent;
        cursor: pointer;
        max-width: 120px;
        white-space: normal;
        text-align: center;
        flex-shrink: 0;
        font-weight: 600;
        font-size: 14px;
        line-height: 16px;
        text-transform: capitalize;
        color: #000;
    }

    .satellite-section .tab-btn.active {
        color: #F06C00;
        border-bottom-color: #F06C00;
    }

    .satellite-section {
        padding: 80px 0;
    }

    .satellite-section .expanded .card-body {
        padding: 45px 20px;
        padding-bottom: 27px;
    }

    .satellite-section .card-icon img {
        width: 48px;
        margin-bottom: 29px;
    }

    .satellite-section .card-title {
        font-size: 18px;
        line-height: 21px;
        margin-bottom: 14px;
    }

    .satellite-section .card-subtitle-main {
        font-size: 14px;
        line-height: 16px;
        text-transform: capitalize;
        margin-bottom: 30px;
    }

    .satellite-section .hl-desc {
        font-size: 14px;
        line-height: 16px;
    }

    .satellite-section .hl-title {
        margin-bottom: 7px;
    }

    .satellite-section .highlight-item {
        margin-bottom: 29px;
    }

    .satellite-section .check-icon {
        margin-right: 7px;
    }

    .satellite-section .card-features li {
        margin-bottom: 16px;
        font-size: 14px;
        line-height: 16px;
    }

    .satellite-section .features-label {
        margin-bottom: 7px;
    }

    .satellite-section .btn-action {
        margin-top: 4px;
    }

    .satellite-section .sec-desc {
        display: none;
    }
}