/* ===== HOME / HERO SECTION ===== */
.hero {
    padding: 80px 0 100px 0;
}

.hero-highlight {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 2rem;
    border-left: 4px solid var(--yellow);
    padding-left: 20px;
}

.hero-grid {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1.2;
    max-width: 700px;
}

.hero-image-inline {
    flex: 0.8;
    min-width: 240px;
    max-width: 380px;
    margin-top: 100px;
    align-self: flex-start;
}

.hero-image-inline img {
    width: 100%;
    height: auto;
    border-radius: 28px;
    object-fit: cover;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 193, 7, 0.3);
    transition: transform 0.25s ease, box-shadow 0.25s;
    display: block;
}

.hero-image-inline img:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 40px -12px rgba(0, 0, 0, 0.6);
    border-color: var(--yellow);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}