/* =======================================================================
   Curaproxedu.cz — Brand overrides (Curaprox "The Blue Book")
   Loaded last (after styles_v5.css), so we override Bootstrap theme tokens.
   Key brand tokens:
   - Primary: Curaprox Blue #003DA5
   - Copy:    Dark grey    #706F6F
   - BG help: Light grey   #EDEDED
   - Supporting: #FF8200, #FCE300, #C4D600, #8BB8E8, #F277C6, #E31C79
   - Typography: Headlines Futura LT Pro (ALL CAPS); Body Info Display Pro
   ======================================================================= */
:root{
    /* Brand colours */
    --cp-blue:   #003DA5;
    --cp-white:  #FFFFFF;
    --cp-grey-900:#706F6F;
    --cp-grey-100:#EDEDED;

    --cp-orange: #FF8200;
    --cp-yellow: #FCE300;
    --cp-green:  #C4D600;
    --cp-sky:    #8BB8E8;
    --cp-pink:   #F277C6;
    --cp-cerise: #E31C79;

    /* Helpful shades */
    --cp-blue-hover:  #00318a; /* darker brand blue for hover */
    --cp-blue-active: #002761; /* deeper for active */

    /* Shape system */
    --cp-radius-ui: 14px;
    --cp-radius-soft: 18px;
    --cp-radius-pill: 999px;

    /* Typography */
    --cp-font-heading: "Futura LT Pro Book", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
    --cp-font-body:    "Futura LT Pro Book", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;

    /* Bootstrap token overrides */
    --bs-primary: var(--cp-blue);
    --bs-primary-rgb: 0, 61, 165;

    --bs-body-font-family: var(--cp-font-body);
    --bs-body-color: var(--cp-blue);
    --bs-body-color-rgb: 0, 61, 165;
    --bs-body-bg: var(--cp-white);

    --bs-link-color: var(--cp-blue);
    --bs-link-hover-color: #002F80;

    --bs-border-color: rgba(112, 111, 111, 0.25);
    --bs-border-color-translucent: rgba(112, 111, 111, 0.20);

    --bs-focus-ring-color: rgba(0, 61, 165, 0.25);
    --bs-border-radius: var(--cp-radius-ui);
    --bs-border-radius-sm: var(--cp-radius-ui);
    --bs-border-radius-lg: var(--cp-radius-soft);
    --bs-border-radius-xl: var(--cp-radius-soft);
    --bs-border-radius-xxl: var(--cp-radius-soft);
    --bs-border-radius-pill: var(--cp-radius-pill);
}

/* Typography: headings = Futura ALL CAPS */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6{
    font-family: var(--cp-font-heading);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--cp-blue);
}

/* Body copy */
body{
    font-family: var(--cp-font-body);
    color: var(--cp-blue);
}

/* Strong/Bold */
strong, b{
    font-family: var(--cp-font-heading);
    font-weight: 700;
}

/* Links */
a{
    text-decoration-thickness: 0.08em;
    text-underline-offset: 0.14em;
}

.rounded-3{
    border-radius: var(--cp-radius-ui) !important;
}

.rounded-4{
    border-radius: var(--cp-radius-soft) !important;
}

.rounded-pill{
    border-radius: var(--cp-radius-pill) !important;
}

/* Buttons: Primary */
.btn,
.btn-lg,
.btn-sm,
.btn-group > .btn,
.btn-group-lg > .btn,
.btn-group-sm > .btn{
    --bs-btn-border-radius: var(--cp-radius-pill);
    border-radius: var(--cp-radius-pill);
}

.btn-primary{
    --bs-btn-bg: var(--cp-blue);
    --bs-btn-border-color: var(--cp-blue);
    --bs-btn-hover-bg: var(--cp-blue-hover);
    --bs-btn-hover-border-color: var(--cp-blue-hover);
    --bs-btn-active-bg: var(--cp-blue-active);
    --bs-btn-active-border-color: var(--cp-blue-active);
    --bs-btn-disabled-bg: rgba(0, 61, 165, 0.55);
    --bs-btn-disabled-border-color: rgba(0, 61, 165, 0.55);
    --bs-btn-color: #fff;
    --bs-btn-hover-color: #fff;
    --bs-btn-active-color: #fff;
}

/* Buttons: Outline Primary
   - IMPORTANT: hover text color in Bootstrap is often white
     => hover background must be dark enough (brand blue) for readability.
*/
.btn-outline-primary{
    --bs-btn-color: var(--cp-blue);
    --bs-btn-border-color: var(--cp-blue);

    /* Hover (FINAL): only bg + border changed, matches brand + stays readable */
    --bs-btn-hover-bg: var(--cp-blue-hover);
    --bs-btn-hover-border-color: var(--cp-blue-hover);

    /* Keep default Bootstrap behaviour for hover text if you want,
       but these are safe brand values anyway: */
    --bs-btn-hover-color: #fff;

    --bs-btn-active-bg: var(--cp-blue-active);
    --bs-btn-active-border-color: var(--cp-blue-active);
    --bs-btn-active-color: #fff;
}

/* Forms: focus states in Curaprox blue */
.form-control:focus,
.form-select:focus,
.form-check-input:focus{
    border-color: rgba(0, 61, 165, 0.55);
    box-shadow: 0 0 0 0.25rem rgba(0, 61, 165, 0.15);
}

.form-check-input:checked{
    background-color: var(--cp-blue);
    border-color: var(--cp-blue);
}

/* Cards / section backgrounds */
.bg-light,
.bg-body-tertiary{
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
}

/* Alerts: map semantics to supporting colours */
.alert-info{
    --bs-alert-bg: rgba(139, 184, 232, 0.25);
    --bs-alert-border-color: rgba(139, 184, 232, 0.55);
    --bs-alert-color: var(--cp-grey-900);
}
.alert-warning{
    --bs-alert-bg: rgba(252, 227, 0, 0.25);
    --bs-alert-border-color: rgba(252, 227, 0, 0.65);
    --bs-alert-color: var(--cp-grey-900);
}
.alert-danger{
    --bs-alert-bg: rgba(227, 28, 121, 0.18);
    --bs-alert-border-color: rgba(227, 28, 121, 0.45);
    --bs-alert-color: var(--cp-grey-900);
}
.alert-success{
    --bs-alert-bg: rgba(196, 214, 0, 0.22);
    --bs-alert-border-color: rgba(196, 214, 0, 0.50);
    --bs-alert-color: var(--cp-grey-900);
}

/* Optional: brand chips helpers */
.cp-chip{
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .25rem .6rem;
    border: 1px solid rgba(112, 111, 111, 0.25);
    background: #fff;
    font-size: .875rem;
}
.cp-chip--blue{
    border-color: rgba(0,61,165,.35);
}
.cp-chip--grey{
    background: var(--cp-grey-100);
}

.cp-dot{
    width: .6rem;
    height: .6rem;
    border-radius: 999px;
    background: #1A4496;
    background: var(--cp-blue);
}
.cp-dot--orange{
    background: var(--cp-orange);
}
.cp-dot--yellow{
    background: var(--cp-yellow);
}
.cp-dot--green {
    background: var(--cp-green);
}
.cp-dot--sky   {
    background: var(--cp-sky);
}
.cp-dot--pink  {
    background: var(--cp-pink);
}
.cp-dot--cerise{
    background: var(--cp-cerise);
}

.btn-outline-primary{
    --bs-btn-hover-bg: #00318a;
    --bs-btn-hover-border-color: #00318a;
}

/* ======================================================================= */

/* GENERAL */
@media (min-width: 1200px) {
    main {
        background-image: url('/images/curaproxeducz_bg.webp');
        background-position: top 500px right 0;
        background-repeat: no-repeat;
    }
}
strong,
b {
    font-family: 'Futura LT Pro Bold';
}
.no-uppercase {
    text-transform: none;
}
.blockquote-footer::before {
    display: none;
}
.blockquote-footer {
    text-align: right;
}
.h-min-50 {
    min-height: 50vh;
}
.h-min-75 {
    min-height: 75vh;
}

/* NAVBAR */
.navbar-brand img {
    height: 50px;
}
@media (max-width: 1199px) {
    .navbar-brand img {
        height: 35px;
    }
}
@media (max-width: 991px) {
    .navbar-brand img {
        height: 35px;
    }
}
@media (max-width: 575px) {
    .navbar-brand img {
        height: 25px;
    }
}
.nav-link {
    font-weight: 400;
    text-transform: uppercase;
}
@media (min-width: 992px) and (max-width: 1199px) {
    .nav-link {
        font-size: 0.875em;
    }
}

/* LINKS */
.link-mask::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
}

/* FULLCALENDAR */
.fc .fc-toolbar-title {
    font-size: 1.5em;
}

/* ITI */
.iti {
    display: block;
}

/* HOMEPAGE */
.front-homepage .nav-link:hover,
.front-homepage .nav-link:focus {
    color: rgba(0, 0, 0, 0.7);
}
.front-homepage main {
    background-image: url('/images/curaproxeducz_header_bg_2.webp');
    background-position: top 0px right 0px;
    background-size: 55%;
    background-repeat: no-repeat;
}
.front-homepage .row-curaden-czech {
    min-height: 75vh;
}
.front-homepage header .text-muted {
    color: #ffffff;
}
@media (min-width: 1600px) {
    .front-homepage main {
        background-position: top -100px right 0px;
    }
}
@media (min-width: 1400px) and (max-width: 1599px) {

}
@media (min-width: 1200px) and (max-width: 1399px) {
    .front-homepage main {
        background-size: 60%;
    }
    .front-homepage .row-curaden-czech {
        min-height: 65vh;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .front-homepage main {
        background-size: 62%;
    }
    .front-homepage .row-curaden-czech {
        min-height: 60vh;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .front-homepage main {
        background-size: 50%;
    }
    .front-homepage .row-curaden-czech {
        min-height: 30vh;
    }
}
@media (max-width: 767px) {
    .front-homepage .navbar {
        background-color: #ffffff;
    }
    .front-homepage .navbar-toggler {
        background-color: #ffffff;
    }
    .front-homepage main {
        background-image: none;
    }
    .front-homepage .row-curaden-czech {
        min-height: initial;
        background-image: url('/images/curaproxeducz_header_bg_2.webp');
        background-repeat: no-repeat;
        background-color: #512D8D;
        background-position: top 0px right 0px;
        background-size: 100% auto;
    }
    .front-homepage h1 {
        color: #ffffff;
    }
}
@media (max-width: 991px) {
    .front-homepage .navbar:has(.navbar-collapse.show) {
        background-color: #ffffff;
    }
}
@media (min-width: 992px) {
    .front-homepage .nav-link {
        color: #ffffff;
    }
}
@media (max-width: 1399px) {
    .front-homepage .display-5-header {
        font-size: 2rem;
    }
}
@media (max-width: 991px) {
    .front-homepage .display-5-header {
        font-size: 1.5rem;
    }
}

/* curaden czech */
.img-curaden-czech {
    width: 430px;
}
@media (max-width: 991px) {
    .img-curaden-czech {
        max-width: 33%;
    }
}

/* CARD */
.card-header p {
    margin: 0.4em 0;
}
.card-header.bg-danger a {
    color: inherit;
}
.card-form-error,
.card-form-error .card-header {
    border-color: rgb(220, 53, 69);
}

/* REGISTRATIONS */
.input-spinner {
    max-width: 75px;
}

/* HP animation */
.circle-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    justify-items: center;
}
@media (min-width: 576px) {
    .circle-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.circle-wrapper {
    perspective: 1000px;
    width: 100%;
    opacity: 0;
    transform: translateY(40px) scale(0.9);
    animation: slideIn 0.8s ease-out forwards;
}
.circle {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    transform-style: preserve-3d;
    transition: transform 0.8s ease;
    cursor: pointer;
}
.circle-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    backface-visibility: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: opacity 0.9s ease;
    opacity: 1;
    box-shadow:
        inset 0 0 10px rgba(0, 0, 0, 0.1),
        0 8px 20px rgba(0, 0, 0, 0.15);
}
.back {
    transform: rotateY(180deg);
}
.flipped {
    transform: rotateY(180deg);
}
@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}


/* lecturers slider */
.lecturers-overview-section {
    background-color: #ffffff;
}
.lecturers-carousel {
    padding-inline: 3.5rem;
}
#lecturers-carousel .carousel-control-prev,
#lecturers-carousel .carousel-control-next {
    width: 3rem;
    height: 3rem;
    top: 50%;
    transform: translateY(-50%);
    background-color: #1A4496 !important;
    border: 1px solid #1A4496 !important;
    border-radius: 50%;
    opacity: 1 !important;
}
#lecturers-carousel .lecturers-carousel-control-icon {
    width: 1.25rem;
    height: 1.25rem;
    background-size: 1.25rem 1.25rem;
}
#lecturers-carousel .carousel-control-prev:hover,
#lecturers-carousel .carousel-control-next:hover {
    background-color: #1a29cf !important;
    border-color: #1a29cf !important;
}
#lecturers-carousel .carousel-control-prev:focus,
#lecturers-carousel .carousel-control-next:focus {
    box-shadow: 0 0 0 .25rem rgba(0, 61, 165, 0.25);
}
.lecturer-card {
    background-color: #ffffff;
    border: 1px solid #eef1f5;
    border-radius: var(--cp-radius-soft);
    border-radius: 1rem;
    overflow: hidden;
    padding: 1.25rem;
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.06);
}
.lecturer-card-image-wrapper {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    aspect-ratio: 4 / 5;
    border-radius: calc(var(--cp-radius-soft) - 4px);
    overflow: hidden;
    background-color: #ffffff;
    padding: 0.5rem;
}
.lecturer-card-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
}
.lecturer-card-name {
    min-height: calc(1.2em * 3);
    line-height: 1.2;
    text-transform: none;
    letter-spacing: normal;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


/* lecturers directory */
.lecturers-directory-intro {
    max-width: 52rem;
}
.lecturers-directory-card {
    background: var(--cp-white);
    border: 1px solid rgba(112, 111, 111, 0.12);
    border-radius: var(--cp-radius-soft);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.lecturers-directory-card-top {
    min-height: 0;
}
.lecturers-directory-photo-frame {
    width: min(100%, 10rem);
    aspect-ratio: 4 / 5;
    border-radius: var(--cp-radius-soft);
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0.75rem;
}
.lecturers-directory-photo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
}
.lecturers-directory-photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0, 61, 165, 0.35);
    font-size: 3rem;
}
.lecturers-directory-heading {
    max-width: 16rem;
    margin-inline: auto;
}
.lecturers-directory-name {
    letter-spacing: normal;
    line-height: 1.15;
}
.lecturers-directory-position {
    font-size: 0.95rem;
}
.lecturers-directory-bio-preview,
.lecturers-directory-bio-full-inner {

}
.lecturers-directory-bio-preview {
    position: relative;
    overflow: hidden;
    max-height: 13.5rem;
    line-height: 1.7;
}
.lecturers-directory-bio-preview::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 3.5rem;
    background: linear-gradient(180deg, rgba(248, 250, 255, 0) 0%, rgba(248, 250, 255, 1) 100%);
    pointer-events: none;
}
.lecturers-directory-bio-full-inner > *:last-child {
    margin-bottom: 0;
}
.lecturers-directory-bio-full {
    margin-top: -0.25rem;
}
.lecturers-directory-toggle.btn-outline-primary {
    font-family: var(--cp-font-heading);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--cp-white);
    background-color: var(--cp-blue);
    border: 1px solid var(--cp-blue);
    border-radius: 999px;
    padding: 0.55rem 1rem;
}
.lecturers-directory-toggle.btn-outline-primary:hover,
.lecturers-directory-toggle.btn-outline-primary:focus {
    color: var(--cp-white);
    background-color: var(--cp-blue-hover);
    border-color: var(--cp-blue-hover);
}
.lecturers-directory-toggle.btn-outline-primary:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 61, 165, 0.15);
}
.lecturers-directory-toggle-label-expanded {
    display: none;
}
.lecturers-directory-toggle.btn-outline-primary[aria-expanded="true"] .lecturers-directory-toggle-label-collapsed {
    display: none;
}
.lecturers-directory-toggle.btn-outline-primary[aria-expanded="true"] .lecturers-directory-toggle-label-expanded {
    display: inline;
}
.lecturers-directory-toggle.btn-outline-primary[aria-expanded="true"] {
    color: var(--cp-blue);
    background-color: var(--cp-blue);
    border-color: var(--cp-blue);
}
.lecturers-directory-toggle.btn-outline-primary[aria-expanded="true"]:hover {
    color: #ffffff;
    background-color: var(--cp-blue-hover);
    border-color: var(--cp-blue-hover);
}
.lecturers-directory-toggle.btn-outline-primary[aria-expanded="true"]:focus {
    color: var(--cp-blue);
    background-color: var(--cp-blue-hover);
    border-color: var(--cp-blue-hover);
}
.lecturers-directory-toggle.btn-outline-primary[aria-expanded="true"]:active {
    color: #ffffff;
    background-color: var(--cp-blue-active);
    border-color: var(--cp-blue-active);
}
.lecturers-directory-card:has(.lecturers-directory-bio-full.show) .lecturers-directory-bio-preview {
    display: none;
}
@media (min-width: 1400px) {
    .lecturers-directory-grid {
        --bs-gutter-x: 1.5rem;
    }
}
@media (max-width: 767px) {
    .lecturers-directory-photo-frame {
        width: min(100%, 8.5rem);
    }
    .lecturers-directory-card-top {
        min-height: unset;
    }
    .lecturers-directory-bio-preview {
        max-height: 11.5rem;
    }
}

/* reviews slider */
.reviews-carousel-card-body {
    height: clamp(20rem, 42vh, 24rem);
    display: flex;
    flex-direction: column;
}
.reviews-carousel-review-wrapper {
    position: relative;
    flex: 1 1 auto;
    min-height: 0;
    overflow: hidden;
}
.reviews-carousel-review {
    height: 100%;
    overflow: hidden;
}
.reviews-carousel-review-fade {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 4rem;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #ffffff 80%);
    pointer-events: none;
}
.reviews-carousel-toggle {
    align-self: flex-start;
    text-decoration: none;
    font-weight: 600;
}
.reviews-carousel-toggle:hover,
.reviews-carousel-toggle:focus {
    text-decoration: underline;
}

.reviews-carousel {
    padding-inline: 4.5rem;
}
#reviews-carousel .reviews-carousel-control {
    width: 3rem;
    height: 3rem;
    top: 50%;
    transform: translateY(-50%);
    background-color: #1A4496 !important;
    border: 1px solid #1A4496 !important;
    border-radius: 50%;
    opacity: 1 !important;
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.12);
}
#reviews-carousel .carousel-control-prev {
    left: 0.25rem;
}
#reviews-carousel .carousel-control-next {
    right: 0.25rem;
}
#reviews-carousel .reviews-carousel-control-icon {
    width: 1.25rem;
    height: 1.25rem;
    background-size: 1.25rem 1.25rem;
    filter: brightness(0) invert(1);
}
#reviews-carousel .reviews-carousel-control:hover {
    background-color: #1a29cf !important;
    border-color: #1a29cf !important;
}
#reviews-carousel .reviews-carousel-control:hover .reviews-carousel-control-icon {
    filter: brightness(0) invert(1);
}
#reviews-carousel .reviews-carousel-control:focus {
    box-shadow: 0 0 0 .25rem rgba(0, 61, 165, 0.25);
}
@media (max-width: 991px) {
    .lecturers-carousel {
        padding-inline: 2.5rem;
    }

    .reviews-carousel {
        padding-inline: 3.5rem;
    }
}
@media (max-width: 575px) {
    .lecturers-carousel {
        padding-inline: 0;
        margin-bottom: 4.25rem;
    }
    .lecturers-carousel .carousel-control-prev,
    .lecturers-carousel .carousel-control-next {
        top: auto !important;
        bottom: -3.75rem;
        transform: none;
    }
    .lecturers-carousel .carousel-control-prev {
        left: calc(50% - 3.25rem);
    }
    .lecturers-carousel .carousel-control-next {
        right: calc(50% - 3.25rem);
    }

    .reviews-carousel {
        padding-inline: 0;
        margin-bottom: 4.25rem;
    }
    .reviews-carousel-card-body {
        height: 30rem;
    }
    #reviews-carousel .reviews-carousel-card .h4 {
        line-height: 1.1;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    #reviews-carousel .reviews-carousel-card .mb-4 {
        margin-bottom: 1.25rem !important;
    }
    .reviews-carousel-review-wrapper {
        min-height: 7.5rem;
    }
    .reviews-carousel .reviews-carousel-control {
        top: auto !important;
        bottom: -3.75rem;
        transform: none;
    }
    #reviews-carousel .carousel-control-prev {
        left: calc(50% - 3.25rem);
    }
    #reviews-carousel .carousel-control-next {
        right: calc(50% - 3.25rem);
    }
}

/* general */
.opacity-005 {
    opacity: 0.05;
}

/* gallery */
.video-thumb-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    line-height: 1;
    color: #fff;
    text-shadow: 0 6px 20px rgba(0,0,0,0.6);
    pointer-events: none;
}
a.video-thumb:hover .video-thumb-play {
    text-shadow: 0 6px 20px rgba(0,0,0,1);
}

/* press */
.press-homepage-logo-item {
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 1 160px;
}

.press-homepage-logo {
    max-width: 150px;
    max-height: 42px;
    width: auto;
    height: auto;
    opacity: 0.9;
}

@media (max-width: 575.98px) {
    .press-homepage-logos {
        column-gap: 1rem !important;
        row-gap: 2rem !important;
    }

    .press-homepage-logo-item {
        flex: 0 0 calc(50% - 0.5rem);
        max-width: calc(50% - 0.5rem);
    }

    .press-homepage-logo {
        max-width: 100%;
    }
}
.press-mentions-hero {
    background: linear-gradient(180deg, rgba(139, 184, 232, 0.16) 0%, rgba(255, 255, 255, 1) 100%);
}

.press-mention-card {
    border: 1px solid rgba(0, 61, 165, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.press-mention-card:hover {
    box-shadow: 0 16px 32px rgba(0, 61, 165, 0.12) !important;
}

.press-mention-image {
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
}

.press-mention-logo-wrap {
    min-height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 61, 165, 0.08);
}

.press-mention-logo {
    max-width: 140px;
    max-height: 36px;
    width: auto;
    height: auto;
}

.press-mention-tag {
    color: #003DA5;
    border-color: rgba(0, 61, 165, 0.18) !important;
    background: rgba(139, 184, 232, 0.12) !important;
}

.blog-hero {

}

.blog-eyebrow {
    display: inline-block;
    margin-bottom: 1rem;
    color: #003DA5;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.blog-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-card:hover {
    box-shadow: 0 16px 32px rgba(0, 61, 165, 0.12) !important;
}

.blog-cover-image {
    min-height: 220px;
}

.blog-category-pill {
    min-height: 52px;
}

.blog-pagination .page-link {
    color: #003DA5;
    border: 1px solid rgba(0, 61, 165, 0.14);
    min-width: 44px;
    text-align: center;
    border-radius: var(--cp-radius-ui);
}

.blog-pagination .page-item.active .page-link {
    background: #003DA5;
    border-color: #003DA5;
    color: #fff;
}

.blog-detail-hero {
    background: none;
}

.blog-detail-shell {
    background: #fff;
    border: 1px solid rgba(0, 61, 165, 0.08);
    border-radius: var(--cp-radius-soft);
    overflow: hidden;
}

.blog-detail-cover {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    height: 100%;
}

.blog-detail-meta {
    padding-top: 2rem;
}

.blog-article-perex p:last-child {
    margin-bottom: 0;
}

.blog-detail-content {
    color: #4b4f58;
    line-height: 1.85;
}

.blog-detail-content h2,
.blog-detail-content h3,
.blog-detail-content h4 {
    color: #1f2937;
    font-weight: 700;
    line-height: 1.25;
    margin-top: 2.25rem;
    margin-bottom: 1rem;
}

.blog-detail-content h2 {
    font-size: 1.9rem;
}

.blog-detail-content h3 {
    font-size: 1.45rem;
}

.blog-detail-content p,
.blog-detail-content ul,
.blog-detail-content ol,
.blog-detail-content blockquote {
    margin-bottom: 1.25rem;
}

.blog-detail-content img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 1rem;
    margin: 0 auto 1.25rem;
}

.blog-detail-content a:not(.btn) {
    color: #003DA5;
}

@media (max-width: 991.98px) {
    .blog-detail-cover {
        aspect-ratio: 16 / 10;
    }
}

.curaproxclub-registration .curaprox-club-hero {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background-image: linear-gradient(90deg, rgba(0, 61, 165, .86) 0%, rgba(0, 61, 165, .68) 38%, rgba(0, 61, 165, .18) 72%), url('../images/curaproxclub/curaproxclub_hero.jpg');
    background-position: center;
    background-size: cover;
    color: #fff;
}

body.curaproxclub-registration {
    overflow-x: hidden;
}

.curaproxclub-registration .curaprox-club-hero-content {
    width: calc(100vw - 2rem);
    max-width: 680px;
    padding: 7rem 0 5rem;
}

.curaproxclub-registration .curaprox-club-eyebrow {
    color: #C4D600;
    letter-spacing: 0;
}

.curaproxclub-registration .curaprox-club-hero-title {
    color: #fff;
    line-height: 1.05;
    max-width: 13ch;
}

.curaproxclub-registration .curaprox-club-hero-lead {
    color: rgba(255, 255, 255, .92);
    max-width: 100%;
    white-space: normal;
}

.curaproxclub-registration .curaprox-club-badge {
    color: #003DA5;
    background: #fff;
    border: 1px solid rgba(255, 255, 255, .32);
}

.curaproxclub-registration .curaprox-club-badges {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    width: 100%;
    max-width: 100%;
}

.curaproxclub-registration .curaprox-club-form-section {
    background: #f7f9fc;
}

.curaproxclub-registration .curaprox-club-card-preview {
    display: block;
    width: 100%;
    max-width: 280px;
    height: auto;
    margin: 0 auto 2rem;
    border-radius: 1rem;
    box-shadow: 0 1rem 2.5rem rgba(0, 61, 165, 0.16);
}

.curaproxclub-registration .form-control,
.curaproxclub-registration .form-check-input,
.curaproxclub-account .form-control,
.curaproxclub-account .form-check-input {
    border-radius: 1rem;
}

.curaproxclub-registration .btn-primary,
.curaproxclub-account .btn-primary {
    background-color: #003DA5;
    border-color: #003DA5;
}

.curaproxclub-registration .btn-primary:hover,
.curaproxclub-account .btn-primary:hover {
    background-color: #002b73;
    border-color: #002b73;
}

.curaproxclub-registration .form-control:focus,
.curaproxclub-account .form-control:focus {
    border-color: #C4D600;
    box-shadow: 0 0 0 .2rem rgba(196, 214, 0, .25);
}

.curaproxclub-registration .invalid-feedback,
.curaproxclub-account .invalid-feedback {
    color: #E31C79;
}

@media (max-width: 991.98px) {
    .curaproxclub-registration .curaprox-club-hero .container,
    .curaproxclub-registration .curaprox-club-form-section .container {
        width: 100%;
        max-width: 100%;
    }

    .curaproxclub-registration .curaprox-club-hero {
        min-height: 520px;
        background-image: linear-gradient(180deg, rgba(0, 61, 165, .88) 0%, rgba(0, 61, 165, .62) 58%, rgba(0, 61, 165, .18) 100%), url('../images/curaproxclub/curaproxclub_hero.jpg');
        background-position: center top;
    }

    .curaproxclub-registration .curaprox-club-hero-content {
        padding: 5rem 0 3rem;
    }
}

@media (max-width: 575.98px) {
    .curaproxclub-registration .curaprox-club-hero {
        min-height: 480px;
    }

    .curaproxclub-registration .curaprox-club-hero-title {
        font-size: 2.1rem;
        max-width: 13ch;
    }

    .curaproxclub-registration .curaprox-club-hero-lead {
        font-size: 1.05rem;
        max-width: 340px;
    }

    .curaproxclub-registration .curaprox-club-badges {
        max-width: 340px;
    }
}
