/**
 * Information page styles - hero image, content, and highlights.
 */

.info-page {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow-y: auto;
}

/* Hero section with image */
.info-hero {
    flex-shrink: 0;
    height: 45%;
    min-height: 200px;
    max-height: 350px;
}

.info-hero-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.info-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content section */
.info-content {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-title {
    font-size: 1.75rem;
    font-weight: 600;
    margin: 0;
    background: linear-gradient(90deg, var(--bs-primary) 0%, var(--bs-info) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.info-lead {
    font-size: 1.1rem;
    color: var(--bs-secondary-color);
    margin: 0;
    font-style: italic;
}

.info-description {
    color: var(--bs-body-color);
    line-height: 1.6;
}

.info-description p {
    margin-bottom: 0.75rem;
}

.info-description p:last-child {
    margin-bottom: 0;
}

/* Highlight cards */
.info-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-top: auto;
    padding-top: 1rem;
}

.info-highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.80rem;
    background: var(--bs-tertiary-bg);
    border-radius: 0.5rem;
    border: 1px solid var(--bs-border-color);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.info-highlight-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.info-highlight-icon {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bs-primary);
    border-radius: 0.375rem;
}

.info-highlight-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    fill: white;
}

.info-highlight-text {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.info-highlight-text strong {
    font-size: 0.9rem;
    font-weight: 600;
}

.info-highlight-text span {
    font-size: 0.75rem;
    color: var(--bs-secondary-color);
}
