/******************************************************************************/
/* ARTS */
/******************************************************************************/
/* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}*/

/* Arts Section */
.arts-section {
    padding: 20px;
    background-color: #fff;
}

.arts-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.art-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 350px;  /* Ensures each art item has at least a minimum height */
}

.art-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.art-content {
    flex-grow: 1;  /* Allows the content to take up available space */
    display: flex;
    flex-direction: column;  /* Stacks text and button vertically */
    justify-content: space-between;  /* Distributes space between text and button */
    padding: 15px;
}

.art-content h2 {
    font-size: 1.5rem !important;  /* Ensures 1.5rem font size */
    font-weight: 400 !important;  /* Ensures font-weight is 400 */
    margin-bottom: 10px;  /* Adds space below the heading */
    margin-top: 0;  /* Removes space above the heading */
}

.art-content p {
    font-size: 1rem;
    margin-bottom: 15px;
}

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #132153;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 5px;
    transition: background-color 0.3s;
    margin-top: auto;  /* Pushes the button down if there's extra space */
    text-align: center;
}

.cta-button:hover {
    background-color: #D6AB33;
}

/* Responsive Design */
@media (max-width: 768px) {
    .arts-container {
        grid-template-columns: 1fr;
    }
}