/**
 * About Pages Shared Styles
 * Styles for Our Approach, Leadership Team, and News pages
 * 
 * @package ApexTheme
 * @subpackage Components/AboutPages
 */

/* ========================================
   Our Approach - Methodology Section
   ======================================== */
.apex-approach-methodology {
    padding: 6rem 1.5rem;
    background: #ffffff;
}

.apex-approach-methodology__container {
    max-width: 1280px;
    margin: 0 auto;
}

.apex-approach-methodology__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.apex-approach-methodology__badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(234, 88, 12, 0.1) 100%);
    color: #f97316;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.apex-approach-methodology__heading {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 1rem 0;
}

.apex-approach-methodology__description {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #64748b;
    margin: 0;
}

.apex-approach-methodology__phases {
    position: relative;
}

.apex-approach-methodology__phase {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.apex-approach-methodology__phase:last-child {
    margin-bottom: 0;
}

.apex-approach-methodology__phase-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.apex-approach-methodology__phase-content {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 16px;
    border-left: 4px solid #f97316;
}

.apex-approach-methodology__phase-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 1rem 0;
}

.apex-approach-methodology__phase-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #475569;
    margin: 0 0 1rem 0;
}

.apex-approach-methodology__phase-content ul {
    margin: 0;
    padding-left: 1.5rem;
}

.apex-approach-methodology__phase-content li {
    font-size: 0.9375rem;
    color: #64748b;
    margin-bottom: 0.5rem;
}

/* ========================================
   Our Approach - Principles Section
   ======================================== */
.apex-approach-principles {
    padding: 6rem 1.5rem;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.apex-approach-principles__container {
    max-width: 1280px;
    margin: 0 auto;
}

.apex-approach-principles__header {
    text-align: center;
    margin-bottom: 4rem;
}

.apex-approach-principles__badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(234, 88, 12, 0.1) 100%);
    color: #f97316;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.apex-approach-principles__heading {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.apex-approach-principles__grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .apex-approach-principles__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .apex-approach-principles__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.apex-approach-principles__card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.apex-approach-principles__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.apex-approach-principles__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(234, 88, 12, 0.1) 100%);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    color: #f97316;
}

.apex-approach-principles__icon svg {
    width: 28px;
    height: 28px;
}

.apex-approach-principles__card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0f172a;
    margin: 0 0 0.75rem 0;
}

.apex-approach-principles__card p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #64748b;
    margin: 0;
}

/* ========================================
   Our Approach - Support Section
   ======================================== */
.apex-approach-support {
    padding: 6rem 1.5rem;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.apex-approach-support__container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .apex-approach-support__container {
        grid-template-columns: 1.5fr 1fr;
    }
}

.apex-approach-support__badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2) 0%, rgba(234, 88, 12, 0.2) 100%);
    color: #f97316;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.apex-approach-support__heading {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 1rem 0;
}

.apex-approach-support__description {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #94a3b8;
    margin: 0 0 2rem 0;
}

.apex-approach-support__features {
    display: grid;
    gap: 1.5rem;
}

.apex-approach-support__feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.apex-approach-support__feature svg {
    width: 24px;
    height: 24px;
    color: #f97316;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.apex-approach-support__feature h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 0.25rem 0;
}

.apex-approach-support__feature p {
    font-size: 0.875rem;
    color: #94a3b8;
    margin: 0;
}

.apex-approach-support__stats {
    display: grid;
    gap: 1rem;
}

.apex-approach-support__stat-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.apex-approach-support__stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #f97316;
    margin-bottom: 0.25rem;
}

.apex-approach-support__stat-label {
    font-size: 0.875rem;
    color: #94a3b8;
}

/* ========================================
   Leadership - Executive Section
   ======================================== */
.apex-leadership-executive {
    padding: 6rem 1.5rem;
    background: #ffffff;
}

.apex-leadership-executive__container {
    max-width: 1280px;
    margin: 0 auto;
}

.apex-leadership-executive__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.apex-leadership-executive__badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(234, 88, 12, 0.1) 100%);
    color: #f97316;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.apex-leadership-executive__heading {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 1rem 0;
}

.apex-leadership-executive__description {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #64748b;
    margin: 0;
}

.apex-leadership-executive__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .apex-leadership-executive__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.apex-leadership-executive__member {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    background: #f8fafc;
    border-radius: 20px;
    overflow: hidden;
}

@media (min-width: 640px) {
    .apex-leadership-executive__member {
        grid-template-columns: 200px 1fr;
    }
}

.apex-leadership-executive__member-image {
    aspect-ratio: 1;
    overflow: hidden;
}

.apex-leadership-executive__member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.apex-leadership-executive__member-info {
    padding: 1.5rem;
}

.apex-leadership-executive__member-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 0.25rem 0;
}

.apex-leadership-executive__member-role {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #f97316;
    margin-bottom: 1rem;
}

.apex-leadership-executive__member-info p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #64748b;
    margin: 0 0 0.75rem 0;
}

.apex-leadership-executive__member-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.apex-leadership-executive__member-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0f172a;
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.3s ease;
}

.apex-leadership-executive__member-social a:hover {
    background: #f97316;
}

.apex-leadership-executive__member-social svg {
    width: 16px;
    height: 16px;
}

/* ========================================
   Leadership - Senior Section
   ======================================== */
.apex-leadership-senior {
    padding: 6rem 1.5rem;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.apex-leadership-senior__container {
    max-width: 1280px;
    margin: 0 auto;
}

.apex-leadership-senior__header {
    text-align: center;
    margin-bottom: 3rem;
}

.apex-leadership-senior__heading {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 0.5rem 0;
}

.apex-leadership-senior__description {
    font-size: 1rem;
    color: #64748b;
    margin: 0;
}

.apex-leadership-senior__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .apex-leadership-senior__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .apex-leadership-senior__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.apex-leadership-senior__member {
    text-align: center;
}

.apex-leadership-senior__member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.apex-leadership-senior__member h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    margin: 0 0 0.25rem 0;
}

.apex-leadership-senior__member span {
    font-size: 0.8125rem;
    color: #64748b;
}

/* ========================================
   Leadership - Culture Section
   ======================================== */
.apex-leadership-culture {
    padding: 6rem 1.5rem;
    background: #ffffff;
}

.apex-leadership-culture__container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .apex-leadership-culture__container {
        grid-template-columns: 1fr 1fr;
    }
}

.apex-leadership-culture__badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(234, 88, 12, 0.1) 100%);
    color: #f97316;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.apex-leadership-culture__heading {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 1rem 0;
}

.apex-leadership-culture__description {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #64748b;
    margin: 0 0 2rem 0;
}

.apex-leadership-culture__benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.apex-leadership-culture__benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: #475569;
}

.apex-leadership-culture__benefit svg {
    width: 20px;
    height: 20px;
    color: #22c55e;
    flex-shrink: 0;
}

.apex-leadership-culture__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.apex-leadership-culture__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.35);
    color: #ffffff;
}

.apex-leadership-culture__cta svg {
    width: 20px;
    height: 20px;
}

.apex-leadership-culture__image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.apex-leadership-culture__image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   News - Featured Section
   ======================================== */
.apex-news-featured {
    padding: 6rem 1.5rem;
    background: #ffffff;
}

.apex-news-featured__container {
    max-width: 1280px;
    margin: 0 auto;
}

.apex-news-featured__header {
    margin-bottom: 2rem;
}

.apex-news-featured__badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(234, 88, 12, 0.1) 100%);
    color: #f97316;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 50px;
}

.apex-news-featured__card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    background: #f8fafc;
    border-radius: 24px;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .apex-news-featured__card {
        grid-template-columns: 1fr 1fr;
    }
}

.apex-news-featured__image {
    position: relative;
    aspect-ratio: 16/10;
}

.apex-news-featured__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.apex-news-featured__category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.5rem 1rem;
    background: #f97316;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 50px;
}

.apex-news-featured__content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.apex-news-featured__date {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 0.75rem;
}

.apex-news-featured__title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.apex-news-featured__excerpt {
    font-size: 1rem;
    line-height: 1.7;
    color: #64748b;
    margin: 0 0 1rem 0;
}

.apex-news-featured__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #f97316;
    text-decoration: none;
    margin-top: auto;
}

.apex-news-featured__link:hover {
    color: #ea580c;
}

.apex-news-featured__link svg {
    width: 20px;
    height: 20px;
}

/* ========================================
   News - Grid Section
   ======================================== */
.apex-news-grid {
    padding: 4rem 1.5rem 6rem;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.apex-news-grid__container {
    max-width: 1280px;
    margin: 0 auto;
}

.apex-news-grid__header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.apex-news-grid__heading {
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.apex-news-grid__filters {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.apex-news-grid__filter {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #64748b;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.apex-news-grid__filter:hover,
.apex-news-grid__filter.active {
    background: #f97316;
    border-color: #f97316;
    color: #ffffff;
}

.apex-news-grid__items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 640px) {
    .apex-news-grid__items {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .apex-news-grid__items {
        grid-template-columns: repeat(3, 1fr);
    }
}

.apex-news-grid__item {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.apex-news-grid__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.apex-news-grid__item-image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.apex-news-grid__item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.apex-news-grid__item:hover .apex-news-grid__item-image img {
    transform: scale(1.05);
}

.apex-news-grid__item-content {
    padding: 1.5rem;
}

.apex-news-grid__item-category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #f97316;
    text-transform: uppercase;
    margin-right: 1rem;
}

.apex-news-grid__item-date {
    font-size: 0.75rem;
    color: #94a3b8;
}

.apex-news-grid__item-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #0f172a;
    margin: 0.75rem 0;
    line-height: 1.4;
}

.apex-news-grid__item-content p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #64748b;
    margin: 0 0 1rem 0;
}

.apex-news-grid__item-content a {
    font-size: 0.875rem;
    font-weight: 600;
    color: #f97316;
    text-decoration: none;
}

.apex-news-grid__item-content a:hover {
    color: #ea580c;
}

.apex-news-grid__load-more {
    text-align: center;
    margin-top: 3rem;
}

.apex-news-grid__load-btn {
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    cursor: pointer;
    transition: all 0.3s ease;
}

.apex-news-grid__load-btn:hover {
    border-color: #f97316;
    color: #f97316;
}

/* ========================================
   News Grid - Pagination
   ======================================== */
.apex-news-grid__pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.apex-news-grid__page-btn {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #64748b;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.apex-news-grid__page-btn:hover,
.apex-news-grid__page-btn.active {
    background: #f97316;
    border-color: #f97316;
    color: #ffffff;
}

.apex-news-grid__page-ellipsis {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #94a3b8;
    font-size: 0.875rem;
}

.apex-news-grid__no-posts {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem 0;
    color: #64748b;
    font-size: 1rem;
}

/* ========================================
   News - Press Section
   ======================================== */
.apex-news-press {
    padding: 6rem 1.5rem;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.apex-news-press__container {
    max-width: 1280px;
    margin: 0 auto;
}

.apex-news-press__header {
    text-align: center;
    margin-bottom: 3rem;
}

.apex-news-press__heading {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.5rem 0;
}

.apex-news-press__description {
    font-size: 1rem;
    color: #94a3b8;
    margin: 0;
}

.apex-news-press__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .apex-news-press__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .apex-news-press__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.apex-news-press__item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.apex-news-press__logo {
    margin-bottom: 1rem;
}

.apex-news-press__logo span {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
}

.apex-news-press__item blockquote {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #94a3b8;
    font-style: italic;
    margin: 0 0 1rem 0;
}

.apex-news-press__item a {
    font-size: 0.875rem;
    font-weight: 600;
    color: #f97316;
    text-decoration: none;
}

.apex-news-press__item a:hover {
    color: #fb923c;
}

/* ========================================
   News - Newsletter Section
   ======================================== */
.apex-news-newsletter {
    padding: 6rem 1.5rem;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

.apex-news-newsletter__container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.apex-news-newsletter__heading {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 1rem 0;
}

.apex-news-newsletter__description {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 2rem 0;
}

.apex-news-newsletter__form {
    display: flex;
    gap: 0.75rem;
    max-width: 500px;
    margin: 0 auto 1rem;
}

@media (max-width: 640px) {
    .apex-news-newsletter__form {
        flex-direction: column;
    }
}

.apex-news-newsletter__form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
}

.apex-news-newsletter__form button {
    padding: 1rem 2rem;
    background: #0f172a;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.apex-news-newsletter__form button:hover {
    background: #1e293b;
}

.apex-news-newsletter__note {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.apex-news-newsletter__notification {
    max-width: 500px;
    margin: 0 auto 1.25rem;
    border-radius: 8px;
    overflow: hidden;
    animation: slideDown 0.3s ease-out;
}

.apex-news-newsletter__notification.success {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.apex-news-newsletter__notification.error {
    background: linear-gradient(135deg, #dc3545 0%, #e74c3c 100%);
}

.apex-news-newsletter__notification-content {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    gap: 0.625rem;
    color: #ffffff;
}

.apex-news-newsletter__notification-icon {
    font-size: 1.125rem;
    flex-shrink: 0;
}

.apex-news-newsletter__notification.success .apex-news-newsletter__notification-icon::before {
    content: "✓";
    font-weight: bold;
}

.apex-news-newsletter__notification.error .apex-news-newsletter__notification-icon::before {
    content: "✕";
    font-weight: bold;
}

.apex-news-newsletter__notification-message {
    flex: 1;
    font-size: 0.875rem;
    font-weight: 500;
    text-align: left;
}

.apex-news-newsletter__notification-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #ffffff;
    cursor: pointer;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    line-height: 1;
    flex-shrink: 0;
    padding: 0;
}

.apex-news-newsletter__notification-close:hover {
    background: rgba(255, 255, 255, 0.35);
}

.apex-news-newsletter__form.loading button {
    opacity: 0.65;
    pointer-events: none;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ========================================
   News - Contact Section
   ======================================== */
.apex-news-contact {
    padding: 4rem 1.5rem;
    background: #f8fafc;
}

.apex-news-contact__container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.apex-news-contact__heading {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 0.5rem 0;
}

.apex-news-contact__description {
    font-size: 1rem;
    color: #64748b;
    margin: 0 0 2rem 0;
}

.apex-news-contact__info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.apex-news-contact__item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.apex-news-contact__item svg {
    width: 24px;
    height: 24px;
    color: #f97316;
}

.apex-news-contact__item strong {
    display: block;
    font-size: 0.875rem;
    color: #0f172a;
}

.apex-news-contact__item a {
    font-size: 0.875rem;
    color: #f97316;
    text-decoration: none;
}

.apex-news-contact__item a:hover {
    color: #ea580c;
}

/* ========================================
   Single News Item – Hero
   ======================================== */
.sn-hero {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #0f172a;
    margin: 0;
    border-radius: 20px;
    overflow: hidden;
}

.sn-hero--no-img { min-height: 400px; }

.sn-hero__gradient {
    position: absolute;
    inset: 0;
}

.sn-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(15,23,42,0.25) 0%,
        rgba(15,23,42,0.60) 50%,
        rgba(15,23,42,0.92) 100%);
    pointer-events: none;
}

.sn-hero__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 2.5rem 2rem 3rem;
}

/* Breadcrumb */
.sn-hero__breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    margin-bottom: 2rem;
}

.sn-hero__breadcrumb a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color .2s;
}

.sn-hero__breadcrumb a:hover { 
    color: #fb923c;
    text-shadow: 0 0 8px rgba(251, 146, 60, 0.5);
}

.sn-hero__breadcrumb span { color: rgba(255,255,255,0.5); }

.sn-hero__sep {
    color: rgba(255,255,255,0.3);
    font-size: 0.75rem;
}

/* Title card */
.sn-hero__card {
    max-width: 780px;
}

.sn-hero__badge {
    display: inline-block;
    padding: 0.3rem 0.875rem;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
    background: #f97316;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.sn-hero__title {
    font-size: clamp(1.75rem, 4.5vw, 2.75rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin: 0 0 1rem;
}

.sn-hero__meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.65);
}

.sn-hero__dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    flex-shrink: 0;
}

/* ========================================
   Single News Item – Body
   ======================================== */
.sn-body {
    padding: 1.75rem 0 4rem;
}

.sn-body__wrap {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 2.5rem;
    align-items: start;
}

@media (max-width: 1024px) {
    .sn-body__wrap {
        grid-template-columns: 1fr;
    }
    .sn-body__side {
        max-width: 560px;
        margin: 0 auto;
        width: 100%;
    }
}

/* Article */
.sn-body__article {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 8px 24px rgba(0,0,0,0.04);
}

@media (max-width: 640px) {
    .sn-body__article { padding: 1.5rem; }
}

.sn-body__content {
    font-size: 1.0625rem;
    line-height: 1.85;
    color: #374151;
}

.sn-body__content h2,
.sn-body__content h3,
.sn-body__content h4 {
    color: #0f172a;
    font-weight: 700;
    margin: 2.25rem 0 0.75rem;
    line-height: 1.3;
}

.sn-body__content h2 { font-size: 1.75rem; }
.sn-body__content h3 { font-size: 1.375rem; }
.sn-body__content h4 { font-size: 1.125rem; }

.sn-body__content p { margin: 0 0 1.25rem; }

.sn-body__content a {
    color: #ea580c;
    text-decoration: none;
    transition: color .2s;
}

.sn-body__content a:hover {
    color: #ea580c;
}

.sn-body__content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 1.5rem 0;
}

.sn-body__content blockquote {
    margin: 2rem 0;
    padding: 1.25rem 1.5rem;
    border-left: 4px solid #f97316;
    background: #fff7ed;
    border-radius: 0 10px 10px 0;
    font-style: italic;
    color: #92400e;
}

.sn-body__content ul,
.sn-body__content ol {
    padding-left: 1.5rem;
    margin: 0 0 1.25rem;
}

.sn-body__content li {
    margin-bottom: 0.5rem;
}

.sn-body__content li::marker {
    color: #f97316;
}

/* Share footer */
.sn-body__foot {
    margin-top: 2.5rem;
    padding-top: 1.75rem;
    border-top: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.sn-body__share-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0;
}

.sn-body__share {
    display: flex;
    gap: 0.5rem;
}

.sn-body__share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s;
}

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

.sn-body__share-btn--li { background: #0a66c2; }
.sn-body__share-btn--tw { background: #000000; }
.sn-body__share-btn--fb { background: #1877f2; }
.sn-body__share-btn--ig { background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4); }
.sn-body__share-btn--wa { background: #25d366; }
.sn-body__share-btn--em { background: #64748b; }

.sn-body__share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* ========================================
   Sidebar
   ======================================== */
.sn-body__side {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: sticky;
    top: 100px;
}

/* Related card */
.sn-side-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 8px 24px rgba(0,0,0,0.04);
}

.sn-side-card__heading {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #64748b;
    margin: 0 0 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #f1f5f9;
}

.sn-side-card__empty {
    font-size: 0.875rem;
    color: #94a3b8;
    text-align: center;
    padding: 1rem 0;
    margin: 0;
}

/* Related item */
.sn-related {
    display: flex;
    gap: 0.875rem;
    padding: 0.75rem 0;
    text-decoration: none;
    border-bottom: 1px solid #f1f5f9;
    transition: background .15s;
    margin: 0 -0.5rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    border-radius: 8px;
}

.sn-related:last-child { border-bottom: none; }

.sn-related:hover {
    background: #f8fafc;
    text-decoration: none;
}

.sn-related__img {
    width: 64px;
    height: 52px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
}

.sn-related__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sn-related__text {
    flex: 1;
    min-width: 0;
}

.sn-related__cat {
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #f97316;
    display: block;
    margin-bottom: 0.125rem;
}

.sn-related__text h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 0.25rem;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color .2s;
}

.sn-related:hover h4 { 
    color: #ea580c;
    text-decoration: none;
}

.sn-related__text time {
    font-size: 0.75rem;
    color: #94a3b8;
}

/* CTA card */
.sn-side-cta {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
}

.sn-side-cta__icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(249,115,22,0.15);
}

.sn-side-cta__icon svg {
    width: 26px;
    height: 26px;
    color: #f97316;
}

.sn-side-cta h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.375rem;
}

.sn-side-cta p {
    font-size: 0.875rem;
    color: #94a3b8;
    line-height: 1.5;
    margin: 0 0 1.25rem;
}

.sn-side-cta__btn {
    display: inline-block;
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: #fff;
    background: #f97316;
    border-radius: 8px;
    text-decoration: none;
    transition: all .2s;
}

.sn-side-cta__btn:hover {
    background: #ea580c;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(234, 88, 12, 0.3);
    text-decoration: none;
}

/* ========================================
   Single News Item – Prev / Next Nav
   ======================================== */
.sn-nav {
    background: #fff;
    border-top: 1px solid #e5e7eb;
    padding: 2rem 0;
}

.sn-nav__wrap {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: center;
}

@media (max-width: 768px) {
    .sn-nav__wrap {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0.75rem;
    }
}

.sn-nav__link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    text-decoration: none;
    transition: all .2s;
}

.sn-nav__link:hover {
    background: #fff5ed;
    border-color: #f97316;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.15);
    text-decoration: none;
}

.sn-nav__link--next {
    justify-content: flex-end;
    text-align: right;
}

.sn-nav__arrow {
    font-size: 1.25rem;
    color: #94a3b8;
    flex-shrink: 0;
    transition: color .2s;
}

.sn-nav__link:hover .sn-nav__arrow { color: #f97316; }

.sn-nav__label {
    display: block;
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #94a3b8;
    margin-bottom: 0.125rem;
}

.sn-nav__link strong {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.35;
    text-decoration: none;
    transition: color .2s;
}

.sn-nav__link:hover strong {
    color: #f97316;
}

.sn-nav__all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    background: #f97316;
    border-radius: 8px;
    text-decoration: none;
    white-space: nowrap;
    transition: background .2s;
}

.sn-nav__all:hover { background: #ea580c; }

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 768px) {
    .apex-approach-methodology,
    .apex-approach-principles,
    .apex-approach-support,
    .apex-leadership-executive,
    .apex-leadership-senior,
    .apex-leadership-culture,
    .apex-news-featured,
    .apex-news-grid,
    .apex-news-press,
    .apex-news-newsletter,
    .apex-news-contact {
        padding: 4rem 1rem;
    }
    
    .apex-approach-methodology__phase {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .apex-approach-methodology__phase-number {
        font-size: 2rem;
    }
    
    .apex-leadership-culture__benefits {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Single Insight Blog – Sidebar & Comments
   ======================================== */

/* Force sidebar to fill the full grid column width */
.sn-body__side .side-column {
    width: 100% !important;
    max-width: 100% !important;
}

/* Horizontal padding for body wrap on small/medium screens */
@media (max-width: 1280px) {
    .sn-body__wrap {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* Comments section spacing inside article */
.sn-body__comments {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}
