/* Spotlight Post Widget Styles */
.spotlight-post-container {
    max-width: 1400px;
    margin: 0 auto;
    background: #ffffff;
    padding: 20px 0;
}

.spotlight-post-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding: 0 15px;
}

.spotlight-post-label {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #111111;
    white-space: nowrap;
    margin-right: 20px;
}

.spotlight-post-line {
    flex-grow: 1;
    height: 1px;
    background-color: #e0e0e0;
}

.spotlight-post-image-wrapper {
    width: 100%;
    margin-bottom: 40px;
    overflow: hidden;
}

.spotlight-post-link {
    display: block;
    width: 100%;
    text-decoration: none;
}

.spotlight-post-img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.spotlight-post-image-wrapper:hover .spotlight-post-img {
    transform: scale(1.03);
}

.spotlight-post-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.spotlight-post-cat {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #777777;
    margin-bottom: 15px;
}

.spotlight-post-title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 56px;
    font-weight: 400;
    line-height: 1.2;
    color: #111111;
    margin: 0 0 20px 0;
    text-transform: none;
}

.spotlight-post-title a {
    color: #111111;
    text-decoration: none;
}

.spotlight-post-title a:hover {
    color: #333333;
}

.spotlight-post-excerpt {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 30px;
}

.spotlight-post-readmore {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: #111111;
    text-decoration: none;
    text-transform: uppercase;
    display: inline-block;
    transition: letter-spacing 0.3s ease;
}

.spotlight-post-readmore:hover {
    letter-spacing: 0.2em;
}

@media (max-width: 1024px) {
    .spotlight-post-title {
        font-size: 44px;
    }
}

@media (max-width: 767px) {
    .spotlight-post-title {
        font-size: 34px;
    }
    .spotlight-post-header {
        margin-bottom: 20px;
    }
    .spotlight-post-image-wrapper {
        margin-bottom: 25px;
    }
}
