﻿.crumb-sep-with-image::before {
	content: url('/SiteAssets/v1/assets/components/pagina-interna/right.svg');
	display: inline-block;
	align-items: center;
	width: 0.4rem; /* Ajusta el ancho de la imagen segÃºn sea necesario */
	height: 0.4rem; /* Ajusta la altura de la imagen segÃºn sea necesario */
	margin: 0 5px;
	margin-top: 2px;
}


.mask-gradient {
    -webkit-mask-image: linear-gradient(
      to left,
      black,
      transparent
    );
    mask-image: linear-gradient(to left, black, transparent);
    -webkit-mask-size: 150% 150%;
    mask-size: 120% 110%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }
  
  /* =========================
   ESTRUCTURA GENERAL
========================= */

.page-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem; /* gap-8 */
}

/* =========================
   HEADPAGE
========================= */

.headpage {
    min-height: 180px;
    max-height: 300px;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 4px solid #125ca2;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.headpage-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.headpage-content {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.headpage-subtitle {
    margin: 0;
    padding: 0;
    color: #125ca2;
    font-size: 25px;
    font-weight: 600;
}

.headpage-title {
    margin: 0;
    padding: 0;
    color: #000;
    font-size: 30px;
    font-weight: 700;
}

/* =========================
   CONTENIDO
========================= */

.content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem; /* gap-4 */
    padding: 0 20px;
}

@media (min-width: 1024px) {
    .content-wrapper {
        max-width: 1280px;
        margin: 0 auto;
    }
}

/* =========================
   BREADCRUMB
========================= */

.breadcrumb {
    display: flex;
    gap: 0.5rem;
    padding: 0.75rem;
    border-radius: 0.5rem;
    border: 1px solid #004884;
    width: max-content;
}

.breadcrumb-home {
    display: flex;
    align-items: center;
}

.breadcrumb-home-icon {
    width: 16px;
    height: 16px;
    fill: #000;
}

.breadcrumb-text {
    font-size: 14px;
    font-weight: 600;
}

.breadcrumb-text span span a {
    color: #000;
}
