/* =========================================================
   SANGIMITANS — COMPLETE SITE POLISH CSS
   ========================================================= */


/* =========================================================
   1. GLOBAL
   ========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
}

img {
    max-width: 100%;
}


/* =========================================================
   2. HEADER — FINAL BALANCED VERSION
   ========================================================= */


/* Main outer header */

html body #header,
html body header#header,
html body .site-header,
html body .main-header,
html body .smss-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 1200 !important;

    width: 100% !important;

    height: auto !important;
    min-height: 0 !important;

    margin: 0 !important;
    padding: 0 !important;

    background: #ffffff !important;

    border-bottom: 1px solid rgba(15, 23, 42, 0.07) !important;

    box-shadow:
        0 3px 14px rgba(15, 23, 42, 0.045) !important;
}


/* ---------------------------------------------------------
   REMOVE OLD THEME WRAPPER SPACING / WIDTH
   --------------------------------------------------------- */

html body #header .container,
html body #header .container-fluid,
html body #header .tt-wrap,
html body #header .header-inner,
html body #header .header-container,

html body .smss-header .container,
html body .smss-header .container-fluid,
html body .smss-header .tt-wrap,
html body .smss-header .header-inner,
html body .smss-header .header-container {
    width: 100% !important;
    max-width: none !important;

    height: auto !important;
    min-height: 0 !important;

    margin: 0 !important;

    padding-top: 0 !important;
    padding-bottom: 0 !important;
}


/* ---------------------------------------------------------
   ACTUAL HEADER CONTENT
   --------------------------------------------------------- */

html body .smss-header .smss-header-inner {
    width: calc(100% - 80px) !important;
    max-width: 1600px !important;

    height: 76px !important;
    min-height: 76px !important;

    margin: 0 auto !important;

    padding: 0 !important;

    display: flex !important;

    align-items: center !important;

    justify-content: space-between !important;

    gap: 30px !important;
}


/* ---------------------------------------------------------
   LOGO
   --------------------------------------------------------- */

html body .smss-header .smss-logo {
    flex: 0 0 90px !important;

    width: 90px !important;
    height: 66px !important;

    margin: 0 !important;
    padding: 0 !important;

    display: flex !important;

    align-items: center !important;
    justify-content: flex-start !important;

    text-decoration: none !important;
}


html body .smss-header .smss-logo img {
    display: block !important;

    width: 80px !important;
    height: 62px !important;

    max-width: 80px !important;
    max-height: 62px !important;

    margin: 0 !important;
    padding: 0 !important;

    object-fit: contain !important;
}


/* ---------------------------------------------------------
   NAVIGATION AREA
   --------------------------------------------------------- */

html body .smss-header .smss-nav {
    flex: 1 1 auto !important;

    width: auto !important;

    margin: 0 !important;
    padding: 0 !important;

    display: flex !important;

    align-items: center !important;
    justify-content: flex-end !important;

    gap: 30px !important;
}


/* Menu links */

html body .smss-header .smss-nav > a,
html body .smss-header .smss-dropdown > button {
    margin: 0 !important;

    padding: 8px 0 !important;

    border: none !important;

    background: transparent !important;

    color: #202326 !important;

    font-family: inherit !important;

    font-size: 15px !important;

    line-height: 1.2 !important;

    font-weight: 600 !important;

    white-space: nowrap !important;

    text-decoration: none !important;

    cursor: pointer !important;

    transition:
        color 0.2s ease !important;
}


html body .smss-header .smss-nav > a:hover,
html body .smss-header .smss-nav > a:focus,
html body .smss-header .smss-dropdown > button:hover,
html body .smss-header .smss-dropdown > button:focus {
    color: #00923f !important;
}


/* ---------------------------------------------------------
   INSIGHTS DROPDOWN
   --------------------------------------------------------- */

html body .smss-header .smss-dropdown {
    position: relative !important;

    margin: 0 !important;
    padding: 0 !important;
}


html body .smss-header .smss-dropdown-toggle {
    display: inline-flex !important;

    align-items: center !important;

    gap: 6px !important;
}


html body .smss-header .smss-dropdown-arrow {
    position: relative !important;
    top: -1px !important;

    font-size: 10px !important;

    line-height: 1 !important;
}


html body .smss-header .smss-dropdown-menu {
    position: absolute !important;

    top: calc(100% + 10px) !important;
    left: 50% !important;

    z-index: 1400 !important;

    width: 190px !important;

    margin: 0 !important;

    padding: 9px !important;

    transform:
        translateX(-50%)
        translateY(6px);

    border: 1px solid rgba(15, 23, 42, 0.08) !important;

    border-radius: 10px !important;

    background: #ffffff !important;

    box-shadow:
        0 14px 34px rgba(15, 23, 42, 0.13) !important;

    opacity: 0;

    visibility: hidden;

    transition:
        opacity 0.18s ease,
        visibility 0.18s ease,
        transform 0.18s ease !important;
}


html body .smss-header .smss-dropdown:hover .smss-dropdown-menu,
html body .smss-header .smss-dropdown:focus-within .smss-dropdown-menu {
    opacity: 1 !important;

    visibility: visible !important;

    transform:
        translateX(-50%)
        translateY(0) !important;
}


html body .smss-header .smss-dropdown-menu a {
    display: block !important;

    padding: 10px 12px !important;

    border-radius: 7px !important;

    color: #202326 !important;

    font-size: 14px !important;

    line-height: 1.3 !important;

    font-weight: 500 !important;

    text-decoration: none !important;
}


html body .smss-header .smss-dropdown-menu a:hover {
    background: #f1f8f4 !important;

    color: #00923f !important;
}


/* ---------------------------------------------------------
   HEADER ACTIONS
   --------------------------------------------------------- */

html body .smss-header .smss-header-actions {
    flex: 0 0 auto !important;

    width: auto !important;

    margin: 0 !important;
    padding: 0 !important;

    display: flex !important;

    align-items: center !important;
    justify-content: flex-end !important;

    gap: 10px !important;
}


/* ---------------------------------------------------------
   DONATE BUTTON
   GREEN — DO NOT CHANGE
   --------------------------------------------------------- */

html body .smss-header a.smss-donate-btn,
html body .smss-header .smss-donate-btn,
html body #header a.smss-donate-btn,
html body #header .smss-donate-btn {
    width: auto !important;

    min-width: 155px !important;

    height: 46px !important;
    min-height: 46px !important;
    max-height: 46px !important;

    margin: 0 !important;

    padding: 0 20px !important;

    display: inline-flex !important;

    align-items: center !important;
    justify-content: center !important;

    border: 1px solid #00923f !important;

    border-radius: 9px !important;

    background: #00923f !important;
    background-color: #00923f !important;
    background-image: none !important;

    color: #ffffff !important;

    font-size: 16px !important;

    line-height: 1 !important;

    font-weight: 700 !important;

    text-decoration: none !important;

    box-shadow:
        0 6px 16px rgba(0, 146, 63, 0.15) !important;
}


html body .smss-header a.smss-donate-btn:hover,
html body .smss-header .smss-donate-btn:hover {
    border-color: #007c35 !important;

    background: #007c35 !important;
    background-color: #007c35 !important;

    color: #ffffff !important;
}


/* Prevent legacy button animation from covering green background */

html body .smss-header .smss-donate-btn::before,
html body .smss-header .smss-donate-btn::after {
    display: none !important;

    content: none !important;
}


/* ---------------------------------------------------------
   RESET LIST SPACING
   --------------------------------------------------------- */

html body .smss-header ul,
html body .smss-header li {
    margin-top: 0 !important;
    margin-bottom: 0 !important;

    padding-top: 0 !important;
    padding-bottom: 0 !important;
}


/* =========================================================
   LARGE DESKTOP
   ========================================================= */

@media (min-width: 1600px) {

    html body .smss-header .smss-header-inner {
        max-width: 1700px !important;
    }


    html body .smss-header .smss-nav {
        gap: 34px !important;
    }
}


/* =========================================================
   LAPTOP
   ========================================================= */

@media (max-width: 1450px) {

    html body .smss-header .smss-header-inner {
        width: calc(100% - 50px) !important;

        gap: 22px !important;
    }


    html body .smss-header .smss-nav {
        gap: 20px !important;
    }


    html body .smss-header .smss-nav > a,
    html body .smss-header .smss-dropdown > button {
        font-size: 14px !important;
    }


    html body .smss-header a.smss-donate-btn,
    html body .smss-header .smss-donate-btn {
        min-width: 140px !important;

        padding-left: 16px !important;
        padding-right: 16px !important;

        font-size: 15px !important;
    }
}


/* =========================================================
   SMALL LAPTOP
   ========================================================= */

@media (max-width: 1200px) {

    html body .smss-header .smss-header-inner {
        width: calc(100% - 36px) !important;

        gap: 16px !important;
    }


    html body .smss-header .smss-nav {
        gap: 15px !important;
    }


    html body .smss-header .smss-nav > a,
    html body .smss-header .smss-dropdown > button {
        font-size: 13px !important;
    }


    html body .smss-header .smss-logo {
        flex-basis: 74px !important;

        width: 74px !important;
    }


    html body .smss-header .smss-logo img {
        width: 68px !important;
        height: 56px !important;
    }


    html body .smss-header a.smss-donate-btn,
    html body .smss-header .smss-donate-btn {
        min-width: 126px !important;

        font-size: 14px !important;
    }
}


/* =========================================================
   MOBILE / TABLET HEADER
   ========================================================= */

@media (max-width: 991px) {

    html body .smss-header .smss-header-inner {
        width: calc(100% - 28px) !important;

        height: 68px !important;
        min-height: 68px !important;

        display: flex !important;

        justify-content: space-between !important;

        gap: 14px !important;
    }


    html body .smss-header .smss-logo {
        flex:
            0
            0
            68px !important;

        width: 68px !important;

        height: 58px !important;
    }


    html body .smss-header .smss-logo img {
        width: 62px !important;
        height: 54px !important;
    }
}

/* =========================================================
   3. HOME — SERVICE SECTION
   ========================================================= */

.smss-home-services {
    width: 100%;

    margin: 0;
    padding: 0;

    overflow: hidden;

    background: #1d2646;

    color: #ffffff;
}


.smss-home-services-grid {
    width: 100%;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    align-items: stretch;

    min-height: 620px;
}


.smss-home-services-content {
    height: 100%;

    padding:
        64px
        clamp(34px, 4.5vw, 82px);

    display: flex;

    align-items: center;
}


.smss-home-services-list {
    width: 100%;

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap:
        38px
        42px;
}


.smss-service-item {
    min-width: 0;
}


.smss-service-icon {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 14px;

    color: #ffffff;

    font-size: 28px;
}


.smss-service-item h3 {
    margin:
        0
        0
        14px;

    color: #ffffff;

    font-size:
        clamp(22px, 1.55vw, 29px);

    line-height: 1.28;

    font-weight: 700;
}


.smss-service-item p {
    margin: 0;

    color: rgba(255, 255, 255, 0.92);

    font-size: 16px;

    line-height: 1.75;
}


.smss-home-services-media {
    height: 100%;
    min-height: 620px;

    overflow: hidden;
}


.smss-home-services-media img {
    width: 100%;
    height: 100%;
    min-height: 620px;

    display: block;

    object-fit: cover;
    object-position: center;
}


/* =========================================================
   4. ABOUT — MISSION / VISION
   ========================================================= */

.smss-purpose-section {
    padding: 70px 0;

    background-color: #f5f6f8;
}


.smss-purpose-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 28px;

    align-items: stretch;
}


.smss-purpose-card {
    height: 100%;
    min-height: 480px;

    padding:
        36px
        38px
        38px;

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    border: 2px solid;

    border-radius: 14px;

    background: rgba(255, 255, 255, 0.42);
}


.smss-purpose-card-mission {
    border-color: #e73d4b;
}


.smss-purpose-card-vision {
    border-color: #00923f;
}


.smss-purpose-icon {
    width: 70px;
    height: 70px;

    margin-bottom: 8px;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 56px;
    line-height: 1;
}


.smss-purpose-card-mission .smss-purpose-icon,
.smss-purpose-card-mission h2 {
    color: #e73d4b;
}


.smss-purpose-card-vision .smss-purpose-icon,
.smss-purpose-card-vision h2 {
    color: #00923f;
}


.smss-purpose-card h2 {
    margin:
        0
        0
        22px;

    font-size: 32px;

    line-height: 1.2;

    font-weight: 700;
}


.smss-purpose-card p {
    margin: 0;

    color: #24262a;

    font-size: 18px;

    line-height: 1.72;
}


/* =========================================================
   5. NEWS DETAIL
   ========================================================= */

.smss-news-detail-section {
    padding: 60px 0;
}


.smss-news-detail-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        330px;

    gap: 40px;

    align-items: start;
}


.smss-news-article {
    min-width: 0;
}


.smss-news-image-shell {
    width: 100%;

    padding: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    overflow: hidden;

    border-radius: 14px;

    background: #f2f4f3;
}


.smss-news-image-shell img {
    display: block;

    width: 100%;
    height: auto;

    max-height: 760px;

    object-fit: contain !important;
    object-position: center !important;
}


.smss-news-body {
    padding-top: 28px;
}


.smss-news-title {
    margin:
        0
        0
        16px;

    color: #202326;

    font-size:
        clamp(30px, 3vw, 48px);

    line-height: 1.18;

    font-weight: 700;
}


.smss-news-meta {
    display: flex;

    flex-wrap: wrap;

    gap:
        10px
        24px;

    margin-bottom: 24px;

    color: #6f7479;

    font-size: 14px;
}


.smss-news-meta span {
    display: inline-flex;

    align-items: center;

    gap: 7px;
}


.smss-news-content {
    color: #2b2f33;

    font-size: 17px;

    line-height: 1.8;
}


.smss-news-content img {
    max-width: 100%;

    height: auto !important;
}


.smss-news-actions {
    margin-top: 32px;

    padding-top: 22px;

    display: flex;

    flex-wrap: wrap;

    align-items: center;
    justify-content: space-between;

    gap: 18px;

    border-top: 1px solid #eceff1;
}


.smss-share-group {
    display: flex;

    flex-wrap: wrap;

    align-items: center;

    gap: 9px;
}


.smss-share-label {
    margin-right: 3px;

    font-weight: 600;
}


.smss-share-btn {
    width: 38px;
    height: 38px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #ffffff !important;

    text-decoration: none !important;
}


.smss-share-whatsapp {
    background: #25d366;
}


.smss-share-facebook {
    background: #1877f2;
}


.smss-share-linkedin {
    background: #0a66c2;
}


.smss-share-twitter {
    background: #202326;
}


.smss-like-btn {
    min-height: 42px;

    padding: 10px 16px;

    display: inline-flex;

    align-items: center;

    gap: 10px;

    border: 1px solid #dfe3e6;

    border-radius: 8px;

    background: #ffffff;

    color: #202326;

    cursor: pointer;
}


.smss-news-sidebar {
    position: relative !important;

    width: auto !important;

    margin: 0 !important;

    padding: 0 !important;
}


.smss-recent-news-card {
    position: sticky;

    top: 92px;

    padding: 24px;

    border-radius: 16px;

    background: #ffffff;

    box-shadow:
        0 8px 28px rgba(17, 24, 39, 0.07);
}


.smss-recent-news-card h3 {
    margin:
        0
        0
        22px;

    color: #202326;

    font-size: 22px;

    font-weight: 700;
}


.smss-recent-news-item {
    display: grid;

    grid-template-columns:
        76px
        minmax(0, 1fr);

    gap: 14px;

    padding:
        0
        0
        18px;

    margin-bottom: 18px;

    border-bottom: 1px solid #eef0f2;
}


.smss-recent-news-item:last-child {
    margin-bottom: 0;

    padding-bottom: 0;

    border-bottom: 0;
}


.smss-recent-news-thumb {
    width: 76px;
    height: 70px;

    display: block;

    overflow: hidden;

    border-radius: 10px;

    background: #f3f4f4;
}


.smss-recent-news-thumb img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


.smss-recent-news-copy {
    min-width: 0;
}


.smss-recent-news-copy a {
    display: block;

    color: #e53239;

    font-size: 15px;

    line-height: 1.35;

    font-weight: 600;

    text-decoration: none;
}


.smss-recent-news-copy time {
    display: block;

    margin-top: 7px;

    color: #72777c;

    font-size: 13px;
}


/* Remove old absolute positioning */

.smss-news-detail-section .sidebar,
.smss-news-detail-section .content-container {
    position: static !important;

    width: auto !important;

    margin-left: 0 !important;
    margin-right: 0 !important;

    transform: none !important;
}


/* =========================================================
   6. AWARDS — DO NOT CROP
   ========================================================= */

.smss-awards-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 26px;
}


.smss-award-card {
    overflow: hidden;

    border: 1px solid #e3e5e7;

    border-radius: 12px;

    background: #ffffff;

    box-shadow:
        0 5px 18px rgba(15, 23, 42, 0.045);
}


.smss-award-image {
    position: relative;

    width: 100%;
    height: 300px;

    padding: 12px;

    display: flex;

    align-items: center;
    justify-content: center;

    overflow: hidden;

    background: #f4f4f2;
}


.smss-award-image img {
    display: block;

    width: 100% !important;
    height: 100% !important;

    max-width: 100%;

    object-fit: contain !important;
    object-position: center !important;
}


.smss-award-content {
    padding:
        16px
        18px
        18px;
}


.smss-award-content h3 {
    margin: 0;

    color: #202326;

    font-size: 18px;

    line-height: 1.35;

    font-weight: 700;
}


.smss-award-content p {
    margin:
        7px
        0
        0;

    color: #74777b;

    font-size: 14px;
}


/* Fallback for old award markup */

.award-card img,
.awards-card img,
.award-item img,
.awards-item img {
    object-fit: contain !important;
    object-position: center !important;
}


/* =========================================================
   7. PHOTO GALLERY — REMOVE FILTERS
   ========================================================= */

.gallery-filter,
.gallery-filters,
.gallery-filter-wrap,
.gallery-filter-wrapper,
.portfolio-filter,
.portfolio-filters,
.filter-button-group,
.isotope-filter,
.isotope-filters,
#gallery-filter,
#gallery-filters,
.gallery-categories,
.gallery-category-filter {
    display: none !important;
}


/* =========================================================
   8. DONATION — REMOVE EXTRA SPACE
   ========================================================= */

.smss-donation-form-card {
    height: auto !important;
    min-height: 0 !important;

    margin-bottom: 40px;

    padding:
        30px
        30px
        32px;

    border: 1px solid #e3e5e7;

    border-radius: 12px;

    background: #ffffff;

    box-shadow:
        0 7px 24px rgba(15, 23, 42, 0.05);
}


.smss-donation-form-card form {
    height: auto !important;
    min-height: 0 !important;

    margin: 0 !important;

    padding-bottom: 0 !important;
}


.smss-donation-submit-row {
    margin-top: 24px;

    margin-bottom: 0 !important;

    padding-bottom: 0 !important;
}


.smss-donation-submit-btn {
    min-height: 48px;

    padding: 12px 21px;

    border: 1px solid #00923f;

    border-radius: 5px;

    background: #00923f;

    color: #ffffff;

    font-size: 16px;

    font-weight: 600;

    cursor: pointer;
}


.donation-section,
.donation-form-section,
.donation-form-wrapper,
.donation-form-container,
.donate-form,
.payment-proof-form {
    height: auto !important;
    min-height: 0 !important;
}


.donation-section .row,
.donation-form-section .row,
.donation-form-wrapper .row {
    height: auto !important;
    min-height: 0 !important;
}


.donation-form-section form,
.donation-form-container form {
    min-height: 0 !important;

    padding-bottom: 0 !important;
}


/* =========================================================
   9. FOOTER
   ========================================================= */

.site-footer,
.smss-footer {
    background: #111719;

    color: #ffffff;
}


.smss-footer {
    padding:
        58px
        0
        24px;
}


.smss-footer-main {
    display: grid;

    grid-template-columns:
        1.2fr
        0.8fr
        0.9fr;

    gap: 54px;

    align-items: start;
}


.smss-footer-brand {
    max-width: 440px;
}


.smss-footer-logo {
    width: 118px !important;
    height: 118px !important;

    margin:
        0
        0
        20px;

    padding: 9px;

    display: block;

    object-fit: contain;

    border-radius: 14px;

    background: #ffffff;

    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.18);
}


.smss-footer-about {
    margin: 0;

    color: rgba(255, 255, 255, 0.92);

    font-size: 17px;

    line-height: 1.75;
}


.smss-footer-title {
    margin:
        0
        0
        18px;

    color: #ffffff;

    font-size: 20px;

    font-weight: 700;
}


.smss-footer-links {
    margin: 0;
    padding: 0;

    list-style: none;
}


.smss-footer-links li {
    margin-bottom: 10px;
}


.smss-footer-links a,
.smss-footer-contact a,
.smss-footer-contact p,
.smss-footer-socials a {
    color: rgba(255, 255, 255, 0.88);

    text-decoration: none;
}


.smss-footer-links a:hover,
.smss-footer-contact a:hover,
.smss-footer-socials a:hover {
    color: #2cba68;
}


.smss-footer-socials {
    display: flex;

    flex-wrap: wrap;

    gap:
        8px
        14px;

    margin-top: 14px;
}


.smss-footer-bottom {
    margin-top: 36px;

    padding-top: 20px;

    border-top: 1px solid rgba(255, 255, 255, 0.11);

    color: rgba(255, 255, 255, 0.64);

    font-size: 13px;

    text-align: center;
}


/* =========================================================
   10. RESPONSIVE — LARGE LAPTOP
   ========================================================= */

@media (max-width: 1450px) {

    html body .smss-header .smss-header-inner {
        width: calc(100% - 40px) !important;

        grid-template-columns:
            90px
            minmax(0, 1fr)
            155px !important;

        column-gap: 16px !important;
    }


    html body .smss-header .smss-nav {
        gap: 19px !important;
    }


    html body .smss-header .smss-nav > a,
    html body .smss-header .smss-dropdown > button {
        font-size: 14px !important;
    }


    html body .smss-header .smss-header-actions {
        width: 155px !important;
    }


    html body .smss-header a.smss-donate-btn,
    html body .smss-header .smss-donate-btn {
        min-width: 145px !important;

        padding-left: 16px !important;
        padding-right: 16px !important;

        font-size: 15px !important;
    }
}


/* =========================================================
   11. RESPONSIVE — TABLET
   ========================================================= */

@media (max-width: 1050px) {

    .smss-home-services-grid {
        grid-template-columns: 1fr;
    }


    .smss-home-services-media,
    .smss-home-services-media img {
        min-height: 430px;
    }


    .smss-news-detail-grid {
        grid-template-columns: 1fr;
    }


    .smss-recent-news-card {
        position: static;
    }


    .smss-awards-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }


    .smss-footer-main {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 40px;
    }
}


/* =========================================================
   12. RESPONSIVE — MOBILE
   ========================================================= */

@media (max-width: 991px) {

    html body .smss-header .smss-header-inner {
        width: calc(100% - 28px) !important;

        height: 68px !important;
        min-height: 68px !important;
        max-height: none !important;

        display: flex !important;

        justify-content: space-between !important;

        gap: 14px !important;
    }


    html body .smss-header .smss-logo {
        width: 68px !important;
        height: 58px !important;
    }


    html body .smss-header .smss-logo img {
        width: 62px !important;
        height: 54px !important;
    }


    html body .smss-header .smss-header-actions {
        width: auto !important;
    }


    .smss-purpose-grid {
        grid-template-columns: 1fr;
    }


    .smss-purpose-card {
        min-height: 0;
    }


    .smss-home-services-content {
        padding:
            52px
            28px;
    }


    .smss-home-services-list {
        gap:
            32px
            30px;
    }
}


/* =========================================================
   13. RESPONSIVE — SMALL TABLET
   ========================================================= */

@media (max-width: 767px) {

    .smss-home-services-list {
        grid-template-columns: 1fr;
    }


    .smss-home-services-media,
    .smss-home-services-media img {
        min-height: 340px;

        height: 340px;
    }


    .smss-purpose-section {
        padding: 48px 0;
    }


    .smss-purpose-card {
        padding:
            28px
            24px;
    }


    .smss-purpose-card h2 {
        font-size: 27px;
    }


    .smss-purpose-card p {
        font-size: 16px;
    }


    .smss-news-detail-section {
        padding: 42px 0;
    }


    .smss-news-actions {
        align-items: stretch;

        flex-direction: column;
    }


    .smss-like-btn {
        width: 100%;

        justify-content: center;
    }


    .smss-awards-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 18px;
    }


    .smss-award-image {
        height: 260px;
    }


    .smss-footer-main {
        grid-template-columns: 1fr;

        gap: 32px;
    }


    .smss-footer {
        padding-top: 44px;
    }


    .smss-footer-logo {
        width: 96px !important;
        height: 96px !important;
    }
}


/* =========================================================
   14. RESPONSIVE — SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .smss-home-services-content {
        padding:
            44px
            20px;
    }


    .smss-awards-grid {
        grid-template-columns: 1fr;
    }


    .smss-award-image {
        height: 330px;
    }


    .smss-donation-form-card {
        padding:
            24px
            20px
            26px;
    }
}