.social-icon-large {
    font-size: 1.8rem; /* scales the icon */
    width: 48px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    border-radius: 50%;
    display: inline-block;
}

.social-icons li a {
    width: 36px;
    height: 36px;
    line-height: 36px;
    font-size: 1.2rem; /* scales the icon */
    text-align: center;
    border-radius: 50%;
    display: inline-block;
}

.header-logo-img {
    display: block;
    max-height: 60px;       /* Prevents tall logos from overflowing */
    max-width: 160px;       /* Prevents wide logos from stretching layout */
    height: auto;
    width: auto;
    object-fit: contain;    /* Preserves aspect ratio */
}

.header-logo {
    display: flex;
    align-items: center;
    min-height: 80px; /* Matches header height */
}


@media (max-width: 576px) {
    .header-logo {
        display: block !important;
    }
}

.header-container.sticky-header {
    padding-top: 10px; /* or more, depending on your design */
}

.header-logo {
    padding-top: 8px;
    padding-bottom: 8px;
}

.card {
    border: 1px solid #ddd; /* Light grey border */
    border-radius: 6px;     /* Optional: rounded corners */
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05); /* Optional: subtle depth */
    transition: box-shadow 0.2s ease-in-out;
}

.card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Slight lift on hover */
}

.card-img-top {
    border: 1px solid #e0e0e0; /* Light grey border */
    border-radius: 4px;        /* Optional: soft corners */
}

.footer-social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px; /* Adjust spacing as needed */
    padding: 0;
    margin: 0;
    list-style: none;
}

figure.photo-container {
    margin: 0;
    padding: 0;
    display: block;
}
figure.photo-container img {
    display: block;
    max-width: 100%;
}
figcaption.caption {
    margin: 0;
    padding: 0;
    text-align: left;
}
