#main-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

#main-logo {
    max-width: 100%;
    height: auto;
}

#featured-section {
    padding-top: 2rem;
}

#featured-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2rem;
}

#featured-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.featured-item-title {
    font-size: 1.5rem;
    margin-bottom: 0;
    color: var(--white);
}

.featured-item {
    padding: 0;
    background: transparent;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-card {
    position: relative;
    aspect-ratio: 21/9;
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
}

.featured-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    width: 100%;
    height: 100%;
}

.featured-card-link:hover .featured-image {
    transform: scale(1.05);
}

.featured-card-link:hover + .featured-overlay {
    background: rgba(84, 58, 130, 0.8);
}

.featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.featured-card-link:hover .featured-image {
    transform: scale(1.05);
}

#mastodon-verification {
    display: none;
}

@media (max-width: 1026px) {
    #main-logo-container {
        margin-bottom: 1rem;
    }

    #featured-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    #featured-items {
        gap: 1.5rem;
    }
}
