﻿.herderText {
    font-size: 24px;
    font-weight: 400 !important;
    color: #313130 !important;
}

.RelatedlinksText {
    font-size: 24px;
    font-weight: 400 !important;
    color: #666363 !important;
}

.content-layout {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    width: 100%;
}

.content-text {
    flex: 1;
    min-width: 0;
}

.content-sections {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin: 1rem 0;
}

.section-column {
    flex: 1;
    padding: 1rem;
    margin-left: -17px;
    border-radius: 8px;
}

.section-title {
    margin-bottom: 0.5rem;
    font-size: 22px;
    font-weight: 400 !important;
    color: #666363 !important;
}

.bullet-list {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.image-container {
    max-width: 300px;
}

.card-img-right {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.link-color {
    color: #0066cc !important;
    text-decoration: none;
}

.link-color:hover {
    color: #23527c;
    text-decoration: underline;
}

.image-size {
    width: 180px;
    height: 180px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .content-layout { flex-direction: column; gap: 1.5rem; }
    .content-sections { flex-direction: column; }
    .section-column { width: 100%; margin-left: 0; }
    .image-container { max-width: 100%; width: 100%; display: flex; flex-direction: column; align-items: center; }
}