/* Special Sections (Quote of the Day, Picture of the Day, Trends) */

/* Quote of the Day Styles */
.quote_of_day {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 20px auto;
    padding: 10px;
    background-color: var(--secondary-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.quote_of_day strong {
    font-family: "Luxurious Script", cursive; /* Ensure this font is imported/available */
    font-size: 5rem;
    font-style: normal;
    margin-top: 50px;
    margin-bottom: 20px;
    text-align: center;
    color: #f9f9f9;
}

.quote_of_day p {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 20px;
}

/* Picture of the Day Styles */
.picture_of_day {
    width: 100%;
    display: flex;
    justify-content: center;
}

.story_img {
    width: 100%;
    height: 500px;
    align-self: center;
    object-fit: cover;
    border-radius: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Trends and Box Styles */
.trends {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.trends .box {
    flex: 1 1 calc(25% - 20px);
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.trends .box h6 {
    margin-top: 0;
}

.trends .box img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 10px auto;
}

.trends .box p {
    margin-top: 10px;
    color: #555;
}