/* --- custom-featured-hero --- */
/**
 * Hero posts styles.
 */

.custom-featured-hero {
    position: relative;
    width: 100%;
    min-height: 420px;
    overflow: hidden;
    isolation: isolate;
    border-radius: 24px;
}

.custom-featured-hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.custom-featured-hero__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(22, 59, 107, 0.85) 0%, rgba(45, 47, 49, 0.75) 100%);
    pointer-events: none;
}

.custom-featured-hero__media img.custom-featured-hero__image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.custom-featured-hero__content {
    position: relative;
    z-index: 1;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px;
}

.custom-featured-hero__breadcrumb {
    position: absolute;
    top: 18px;
    left: 24px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.86);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.28);
}

.custom-featured-hero__breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.custom-featured-hero__breadcrumb a:hover,
.custom-featured-hero__breadcrumb a:focus-visible {
    color: #fff;
    text-decoration: underline;
}

.custom-featured-hero__breadcrumb-current,
.custom-featured-hero__breadcrumb-sep {
    color: rgba(255, 255, 255, 0.72);
}

.custom-featured-hero__inner {
    width: 100%;
    max-width: 800px;
}

.custom-featured-hero__title {
    margin: 0;
    color: #fff !important;
    max-width: 800px;
    width: 100%;
    text-wrap: balance;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
    text-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

.custom-featured-hero__meta {
    margin-top: 12px;
    display: flex;
    gap: 18px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    font-size: 14px;
    line-height: 1.4;
    color: #fff;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
    font-weight: 600;
}

.custom-featured-hero__meta .meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.custom-featured-hero__meta .meta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
}

.custom-featured-hero__meta .meta-icon svg {
    width: 16px;
    height: 16px;
    display: block;
}

@media (max-width: 1024px) {
    .custom-featured-hero,
    .custom-featured-hero__content {
        min-height: 300px;
    }

    .custom-featured-hero__content {
        padding: 24px;
    }

    .custom-featured-hero__breadcrumb {
        top: 14px;
        left: 20px;
    }
}

@media (max-width: 767px) {
    .custom-featured-hero,
    .custom-featured-hero__content {
        min-height: 280px;
        border-radius: 0;
    }

    .custom-featured-hero__content {
        padding: 16px 14px;
    }

    .custom-featured-hero__breadcrumb {
        top: 10px;
        left: 14px;
        right: 14px;
        width: auto;
        max-width: none;
        font-size: 14px;
        flex-wrap: nowrap;
    }

    /* One line: keep Home + sep; truncate current crumb (full title is in H1 below). */
    .custom-featured-hero__breadcrumb a,
    .custom-featured-hero__breadcrumb-sep {
        flex-shrink: 0;
    }

    .custom-featured-hero__breadcrumb-current {
        flex: 1 1 auto;
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        text-align: left;
    }

    .custom-featured-hero__meta {
        gap: 12px;
        font-size: 14px;
    }
}


/* --- focalx-social-icons --- */
.fx-social-icons-nav {
	display: block;
}

.fx-social-icons {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	list-style: none;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

.fx-social-icons__item {
	margin: 0;
	padding: 0;
}

.fx-social-icons__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	min-width: 40px;
	min-height: 40px;
	border-radius: 50%;
	text-decoration: none;
	color: #2b2b2b;
	background: #ffffff;
	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease,
		color 0.2s ease;
	box-sizing: border-box;
}

.fx-social-icons__link:hover {
	color: #163b6b;
	opacity: 0.8;
}

.fx-social-icons__link:focus {
	outline: none;
}

.fx-social-icons__link:focus-visible {
	box-shadow:
		0 0 0 2px #ffffff,
		0 0 0 4px #163b6b;
	color: #163b6b;
}

.fx-social-icons__circle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	line-height: 0;
	border-radius: inherit;
}

.fx-social-icons__glyph {
	display: block;
	width: 22px;
	height: 22px;
	flex-shrink: 0;
}

@media (prefers-reduced-motion: reduce) {
	.fx-social-icons__link {
		transition: none;
	}

	.fx-social-icons__link:hover {
		transform: none;
	}
}
