:root {
    --primary-color: hsl(226, 87%, 44%);
    --text-primary: hsl(222, 55%, 18%);
    --text-muted: hsl(220, 9%, 46%);
    --border-color: hsl(215, 28%, 87%);
    --blue-hover: hsl(224, 100%, 93%);
}

.hero-abstract-banner {
    background: linear-gradient(89.4deg, #0077F0 0.22%, #00448A 135.59%);
    padding: 20px; border-radius: 20px;
    display: flex; /* Use flexbox for alignment */
    align-items: center; /* Center content vertically */
    width: 100%; margin:40px auto; text-align: left;
    justify-content: space-between;
}
@media (max-width: 767px) {
    .hero-abstract-banner {
        flex-direction: column;
        gap: 14px;
    }
}
.hero-abstract-banner h2{font-size: 22px; line-height: 32px; font-weight: 800; color: #fff; margin-bottom:0;}
.hero-abstract-banner p{font-size: 18px; line-height: 32px; font-weight: 800; color: #fff; margin-bottom:0;}

/* Section Styles */
#webinar {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 1rem;
    padding-bottom: 0;
    color: rgb(21,36,71);
}

@media (min-width: 768px) {
    .section-title h2 {
        font-size: 40px;
    }
}

/* Webinar Cards */
.webinar-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 24px;
}

@media (min-width: 768px) {
    .webinar-card {
        flex-direction: row;
    }
}

.avatar {
    width: 128px;
    height: 128px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.thesis-webinar-content {
    flex: 1;
}

.thesis-webinar-content h3 {
    font-size: 20px;
    color: var(--text-primary);
    font-weight: bold;
    margin-bottom: 1rem;
}

.thesis-webinar-content p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.thesis-webinar-info {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem 1rem;
    font-size: 14px;
    margin-top: 20px;
}

.thesis-info-item {
    display: flex;
    align-items: start;
    gap: 0.5rem;
}

.thesis-info-item svg {
    width: 16px;
    height: 16px;
    color: var(--text-muted);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Cards */
.card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 24px;
    transition: all 0.3s;
}

.webinar-card:hover {
    border-color: var(--primary-color);
    background: var(--blue-hover);
}

.max-w-5xl {
    max-width: 1024px;
    margin: 0 auto;
}

.button {
    padding: 0.625rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 700 !important;
    cursor: pointer;
    transition: all 0.2s;
    border: 2px solid transparent;
    font-size: 0.875rem;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    white-space: nowrap;
    margin-left: 16px;
}
@media (max-width: 767px) {
    .button {
      margin-left: 0;
    }
}

.button-secondary {
    background: white;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.button-secondary:hover {
    background: hsl(214, 32%, 93%);
}

.button-lg {
    padding: 14px 32px;
    font-size: 16px !important;
}

.webinar-footer-text {
    margin: 0;
    font-size: 14px;
    line-height: 22px;
}
