.section-dashed {
    border-top: 3px dashed #0f355a;
    width: 100%;
    margin: 0;
}

.ticket-img {
    width: 70%;
    height: 50%;
    object-fit: cover;
}
.dashboard-card:hover {
    transform: scale(1.02);
}
.text-header {
    font-size: clamp(2rem, 8vw, 9rem);
    font-weight: 900;
}
.recent-articles {
    background-color: #0f355a;
    border-radius: 1rem;
    padding: 1.5rem;
    color: white;
}
.recent-articles h4 {
    border-radius: 10% 10% 150% 150%;
    background-color: white;
    color: #0f355a;
    padding: 10px 20px;
    text-align: center;
    font-weight: bold;
    margin-top: -30px;
    width: 70%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.recent-article {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}
.recent-article img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 5px;
    flex-shrink: 0;
}
.recent-article small {
    font-size: 1rem;
    color: #ccc;
}

.about-logo {
    max-width: 150px;
}

@media (max-width: 768px) {
    .about-header h1 {
        font-size: 2rem;
    }
}
.section-dashed-white {
    position: absolute;
    top: 55px;
    left: 0;
    width: 100%;
    border: none;
    border-top: 3px dashed #fff;
    z-index: 0;
}
.bg-main {
    --bs-bg-opacity: 1;
    background-color: rgba(15, 53, 90, var(--bs-bg-opacity)) !important;
}
.full-width-hr {
    margin-left: -2rem;
    margin-right: -2rem;
}

@media (max-width: 1024px) {
    .full-width-hr {
        margin-left: -3rem;
        margin-right: -3rem;
    }
}
.carousel-item img {
    height: 400px;
    object-fit: cover;
}
.image-hover-container {
    position: relative;
    width: 400px;
    cursor: pointer;
    border-radius: 0.25rem;
    overflow: hidden;
}

.image-hover-container img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 0.25rem;
}

.buy-ticket-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(48, 51, 54, 0.7);
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    /* pointer-events: none; */
    z-index: 0;
}
.image-hover-container:hover .buy-ticket-overlay {
    opacity: 1;
    color: black;
}
