/* ============================================
   151 Capital - Custom Styles
   ============================================ */

/* ------------------------------------------
   NAV: Apply Now Button
   ------------------------------------------ */
.nav-apply-btn {
    background-color: #b8860b !important;
    color: #fff !important;
    padding: 8px 22px !important;
    border-radius: 4px;
    font-weight: 600 !important;
    font-size: 14px !important;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.nav-apply-btn:hover {
    background-color: #9a7209 !important;
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(184, 134, 11, 0.35);
}

/* Sticky header adjustments */
.header-sticky-active.sticky .nav-apply-btn {
    background-color: #b8860b !important;
}

/* ------------------------------------------
   SERVICES PAGE: Redesigned Cards
   ------------------------------------------ */
.services-page-section {
    padding: 80px 0 60px;
}

.services-page-section h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 36px;
    color: #171717;
    margin-bottom: 10px;
}

.services-page-subtitle {
    color: #666;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 50px;
}

.service-card-pro {
    scroll-margin-top: 120px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
    margin-bottom: 30px;
    border: 1px solid #f0f0f0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card-pro:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.service-card-pro-header {
    padding: 30px 30px 20px;
    border-bottom: 1px solid #f5f5f5;
    display: flex;
    align-items: center;
    gap: 18px;
}

.service-card-pro-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
}

.service-card-pro-icon.rental { background: linear-gradient(135deg, #2563eb, #1d4ed8); }
.service-card-pro-icon.flip { background: linear-gradient(135deg, #d97706, #b45309); }
.service-card-pro-icon.multifamily { background: linear-gradient(135deg, #7c3aed, #6d28d9); }
.service-card-pro-icon.refi { background: linear-gradient(135deg, #059669, #047857); }
.service-card-pro-icon.ground-up { background: linear-gradient(135deg, #dc2626, #b91c1c); }

.service-card-pro-header h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: #171717;
    margin: 0;
}

.service-card-pro-body {
    padding: 24px 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-card-pro-body > p {
    color: #555;
    font-size: 14.5px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-card-pro-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    flex-grow: 1;
}

.service-card-pro-features li {
    position: relative;
    padding: 8px 0 8px 28px;
    font-size: 14px;
    color: #444;
    border-bottom: 1px solid #f8f8f8;
    line-height: 1.5;
}

.service-card-pro-features li:last-child {
    border-bottom: none;
}

.service-card-pro-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Pro';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 9px;
    color: #059669;
    font-size: 13px;
}

.service-card-pro-footer {
    padding: 0 30px 28px;
}

.service-card-pro-footer .btn-apply-service {
    display: inline-block;
    background: #171717;
    color: #fff;
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.service-card-pro-footer .btn-apply-service:hover {
    background: #b8860b;
    color: #fff;
    transform: translateX(4px);
}

.service-card-pro-footer .btn-apply-service i {
    margin-left: 8px;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.service-card-pro-footer .btn-apply-service:hover i {
    transform: translateX(4px);
}

/* ------------------------------------------
   ABOUT PAGE: Service Cards Grid
   ------------------------------------------ */
.about-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.about-service-card {
    background: #fff;
    border-radius: 10px;
    padding: 28px 24px;
    text-align: center;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    text-decoration: none;
    display: block;
}

.about-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-color: #b8860b;
}

.about-service-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    margin-bottom: 16px;
}

.about-service-card-icon.rental { background: linear-gradient(135deg, #2563eb, #1d4ed8); }
.about-service-card-icon.flip { background: linear-gradient(135deg, #d97706, #b45309); }
.about-service-card-icon.multifamily { background: linear-gradient(135deg, #7c3aed, #6d28d9); }
.about-service-card-icon.refi { background: linear-gradient(135deg, #059669, #047857); }
.about-service-card-icon.ground-up { background: linear-gradient(135deg, #dc2626, #b91c1c); }

.about-service-card h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #171717;
    margin-bottom: 8px;
}

.about-service-card p {
    color: #777;
    font-size: 13.5px;
    margin: 0;
    line-height: 1.6;
}

.about-service-card:hover h5 {
    color: #b8860b;
}

/* ------------------------------------------
   Responsive Adjustments
   ------------------------------------------ */
@media (max-width: 991px) {
    .service-card-pro-header {
        padding: 24px 20px 16px;
    }
    .service-card-pro-body {
        padding: 18px 20px;
    }
    .service-card-pro-footer {
        padding: 0 20px 22px;
    }
    .about-services-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 16px;
    }
}

@media (max-width: 767px) {
    .nav-apply-btn {
        display: inline-block;
        margin: 10px 0;
    }
    .services-page-section h1 {
        font-size: 28px;
    }
    .about-services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }
    .about-service-card {
        padding: 20px 16px;
    }
}

@media (max-width: 480px) {
    .about-services-grid {
        grid-template-columns: 1fr;
    }
}

/* ------------------------------------------
   CALCULATOR LANDING PAGE
   ------------------------------------------ */
.calc-landing-subtitle {
    color: #666;
    font-size: 16px;
    max-width: 600px;
    margin: 10px auto 0;
}

.calc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.calc-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 36px 30px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: all 0.35s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.calc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.10);
    border-color: #b8860b;
}

.calc-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: #171717;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
}

.calc-card:hover .calc-card-icon {
    background: #b8860b;
}

.calc-card h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 19px;
    color: #171717;
    margin-bottom: 10px;
}

.calc-card p {
    color: #666;
    font-size: 14.5px;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.calc-card-link {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #171717;
    transition: color 0.3s ease;
}

.calc-card-link i {
    margin-left: 6px;
    font-size: 11px;
    transition: transform 0.3s ease;
}

.calc-card:hover .calc-card-link {
    color: #b8860b;
}

.calc-card:hover .calc-card-link i {
    transform: translateX(4px);
}

.calc-disclaimer {
    color: #999;
    font-size: 13px;
    max-width: 700px;
    margin: 0 auto;
}

.calc-disclaimer i {
    margin-right: 6px;
    color: #b8860b;
}

/* ------------------------------------------
   CALCULATOR DETAIL PAGES
   ------------------------------------------ */
.calc-back-nav a {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #171717;
    text-decoration: none;
    transition: color 0.3s ease;
}

.calc-back-nav a i {
    margin-right: 8px;
    transition: transform 0.3s ease;
}

.calc-back-nav a:hover {
    color: #b8860b;
}

.calc-back-nav a:hover i {
    transform: translateX(-4px);
}

.calc-wrapper {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 40px 36px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.calc-footer-cta p {
    color: #666;
    font-size: 15px;
}

.calc-footer-cta a {
    color: #b8860b;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.calc-footer-cta a:hover {
    color: #171717;
    text-decoration: underline;
}

/* ------------------------------------------
   KJE CALCULATOR OVERRIDES
   Match 151 Capital design system
   ------------------------------------------ */
.calc-wrapper #KJEAllContent {
    padding: 0;
    font-family: 'DM Sans', Arial, Helvetica, sans-serif;
}

.calc-wrapper #KJECalculatorTable {
    border-radius: 10px;
    border-color: #eee;
    background: #fafafa;
    padding: 16px;
    font-size: 0.9rem;
    box-shadow: none;
}

.calc-wrapper #KJETitle {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #171717;
    background-image: none !important;
    padding-left: 0;
    text-align: left;
    font-size: 1.4em;
    margin-bottom: 10px;
}

.calc-wrapper .KJECommandButton {
    background: #171717 !important;
    color: #fff !important;
    border: 2px solid #171717 !important;
    border-radius: 6px !important;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 10px 24px !important;
    cursor: pointer;
    transition: all 0.3s ease !important;
}

.calc-wrapper .KJECommandButton:hover {
    background: #b8860b !important;
    border-color: #b8860b !important;
    color: #fff !important;
}

.calc-wrapper .KJEInputContainer input.KJEInputModern,
.calc-wrapper .KJEInputContainer select.KJEDropBoxModern {
    font-family: 'DM Sans', Arial, sans-serif !important;
    border-radius: 6px !important;
    border: 1px solid #ddd !important;
    padding: 8px 12px !important;
    font-size: 14px !important;
    transition: border-color 0.3s ease !important;
}

.calc-wrapper .KJEInputContainer input.KJEInputModern:focus,
.calc-wrapper .KJEInputContainer select.KJEDropBoxModern:focus {
    border-color: #b8860b !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.1) !important;
}

.calc-wrapper .KJEInputContainer .bold {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 600 !important;
    color: #333 !important;
    font-size: 13px !important;
}

.calc-wrapper #KJERequiredNote {
    color: #999;
    font-size: 12px;
}

.calc-wrapper .KJEMoreButton {
    background: transparent !important;
    color: #171717 !important;
    border: 2px solid #171717 !important;
    border-radius: 6px !important;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 600 !important;
    font-size: 12px !important;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 8px 18px !important;
    cursor: pointer;
    transition: all 0.3s ease !important;
}

.calc-wrapper .KJEMoreButton:hover {
    background: #171717 !important;
    color: #fff !important;
}

.calc-wrapper #KJEFixed {
    z-index: 0 !important;
}

/* ------------------------------------------
   CALCULATOR RESPONSIVE
   ------------------------------------------ */
@media (max-width: 767px) {
    .calc-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .calc-card {
        padding: 28px 24px;
    }

    .calc-wrapper {
        padding: 24px 18px;
        border-radius: 8px;
    }
}

/* ==========================================
   CONTACT PAGE — REDESIGN
   ========================================== */

/* --- Section Layout --- */
.ct-section {
    background: #ffffff;
}

.ct-section-heading {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.ct-section-tag {
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #b8860b;
    margin-bottom: 14px;
}

.ct-section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #171717;
    margin: 0 0 16px;
    line-height: 1.25;
}

.ct-section-desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #6b7280;
    margin: 0;
}


/* --- Form Card --- */
.ct-form-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 44px 40px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 6px 24px rgba(0,0,0,0.04);
}

.ct-form-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #171717;
    margin: 0 0 28px;
    padding-bottom: 18px;
    border-bottom: 2px solid #f3f4f6;
}

.ct-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 0;
}

.ct-form-group {
    margin-bottom: 20px;
}

.ct-form-group-full {
    margin-bottom: 20px;
}

.ct-form-group label {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
}

.ct-form-card input,
.ct-form-card textarea {
    width: 100%;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    color: #171717;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 14px 16px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    outline: none;
}

.ct-form-card input::placeholder,
.ct-form-card textarea::placeholder {
    color: #9ca3af;
}

.ct-form-card input:focus,
.ct-form-card textarea:focus {
    border-color: #b8860b;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.1);
}

.ct-form-card textarea {
    height: 150px;
    resize: vertical;
    min-height: 120px;
}


/* --- Submit Button --- */
.ct-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #171717;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 16px 36px;
    border: 2px solid #171717;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.ct-submit-btn:hover {
    background: #b8860b;
    border-color: #b8860b;
    color: #ffffff;
}

.ct-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.ct-submit-icon {
    display: flex;
    align-items: center;
}

.ct-submit-icon svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.ct-submit-btn:hover .ct-submit-icon svg {
    transform: translateX(3px) translateY(-2px);
}


/* --- Alert Messages --- */
.ct-alert {
    padding: 14px 18px;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}

.ct-alert-success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.ct-alert-error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}


/* --- Info Sidebar --- */
.ct-sidebar {
    background: #171717;
    border-radius: 12px;
    padding: 40px 34px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ct-info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.ct-info-card:first-child {
    padding-top: 0;
}

.ct-info-card:last-of-type {
    border-bottom: none;
}

.ct-info-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: rgba(184, 134, 11, 0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b8860b;
}

.ct-info-body h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 4px;
}

.ct-info-body p {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,0.6);
    margin: 0;
}

.ct-info-body a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.2s ease;
}

.ct-info-body a:hover {
    color: #b8860b;
}


/* --- Social Links --- */
.ct-social-row {
    display: flex;
    gap: 10px;
    margin-top: auto;
    padding-top: 24px;
}

.ct-social-link {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    font-size: 15px;
    transition: all 0.25s ease;
    text-decoration: none;
}

.ct-social-link:hover {
    background: #b8860b;
    border-color: #b8860b;
    color: #ffffff;
}


/* --- Map Section --- */
.ct-map-section {
    background: #171717;
}

.ct-map-container {
    position: relative;
    height: 500px;
}

.ct-map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(20%);
}

.map-overlay {
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 10;
    pointer-events: none;
}

.map-overlay-inner {
    background: rgba(23, 23, 23, 0.92);
    color: #ffffff;
    padding: 22px 28px;
    border-radius: 10px;
    border-left: 4px solid #b8860b;
    backdrop-filter: blur(8px);
    pointer-events: auto;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.map-overlay-inner i {
    color: #b8860b;
    font-size: 18px;
    margin-bottom: 8px;
    display: block;
}

.map-overlay-inner h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 5px;
    color: #ffffff;
    letter-spacing: 0.3px;
}

.map-overlay-inner p {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    margin: 0;
}


/* --- Responsive --- */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .ct-form-card {
        padding: 36px 30px;
    }
    .ct-sidebar {
        padding: 36px 28px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .ct-section-title {
        font-size: 30px;
    }
    .ct-form-card {
        padding: 32px 28px;
        margin-bottom: 30px;
    }
    .ct-sidebar {
        padding: 34px 28px;
        height: auto;
    }
    .ct-map-container {
        height: 400px;
    }
}

@media (max-width: 767px) {
    .ct-section-title {
        font-size: 26px;
    }
    .ct-section-desc {
        font-size: 15px;
    }
    .ct-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .ct-form-card {
        padding: 28px 22px;
        margin-bottom: 24px;
        border-radius: 10px;
    }
    .ct-form-card-title {
        font-size: 19px;
    }
    .ct-sidebar {
        padding: 30px 22px;
        height: auto;
        border-radius: 10px;
    }
    .ct-map-container {
        height: 350px;
    }
    .map-overlay {
        top: 14px;
        left: 14px;
        right: 14px;
    }
    .map-overlay-inner {
        padding: 16px 20px;
    }
    .map-overlay-inner h4 {
        font-size: 14px;
    }
}

/* ------------------------------------------
   APPLY PAGE: Button Styles
   ------------------------------------------ */
.loan-apply-btn-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.loan-apply-primary-btn {
    display: inline-block;
    background: #b8860b;
    color: #fff;
    padding: 16px 40px;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: all 0.3s ease;
    text-decoration: none;
}

.loan-apply-primary-btn:hover {
    background: #171717;
    color: #fff;
    text-decoration: none;
}

.loan-apply-primary-btn i {
    margin-right: 10px;
}

/* ------------------------------------------
   TEAM DETAILS: Core Competency Cards
   ------------------------------------------ */
.competency-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.competency-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.competency-card:hover {
    border-color: #b8860b;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.competency-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: #171717;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b8860b;
    transition: background 0.3s ease;
}

.competency-card:hover .competency-icon {
    background: #b8860b;
    color: #ffffff;
}

.competency-text h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #171717;
    margin: 0 0 4px;
}

.competency-text p {
    font-family: 'DM Sans', sans-serif;
    font-size: 13.5px;
    color: #777;
    line-height: 1.55;
    margin: 0;
}

@media (max-width: 767px) {
    .competency-card {
        padding: 16px;
    }
    .competency-icon {
        width: 42px;
        height: 42px;
    }
    .competency-icon svg {
        width: 20px;
        height: 20px;
    }
}

