* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Quicksand';
    /* font-family:    "Montserrat", sans-serif; */
    /* font-family: century-gothic, sans-serif; */
    font-style: normal;
    font-weight: normal;
    font-size: 15px;
}

* {box-sizing: border-box;
margin: 0;
}
/* body {font-family: Verdana, sans-serif; margin:0} */


body {
    font-family: inherit;
    background: linear-gradient(180deg, #fffcfc, #ffffff); 
    /* background: radial-gradient(circle, rgba(238,174,202,1) 0%, rgba(148,187,233,1) 100%); */
    /* background: 
    radial-gradient(circle at bottom left, rgb(255, 188, 225), transparent 50%),
    radial-gradient(circle at bottom right, rgb(173, 211, 255), transparent 50%),
    radial-gradient(circle at center, rgba(255,255,255,0.8), transparent 70%); */
  /* background-repeat: no-repeat; */
    background-attachment: fixed;
    overflow-x: hidden;
    box-sizing: border-box;
}

h1{
    color: #ed3237;
    font-size: 2rem;
    margin: 10px auto;
    /* margin-left: 15px; */
    font-weight: 700;
    text-align: center;
}
    
.page-description{
    font-size: 1.1rem;
    text-align: center;
}

/* Main cards container styling */
.cards-container {
    width: 90%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
    margin: 0 auto;
    justify-content: flex-start;
}

/* Individual card styling */
.card-item {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    /* width: 30%; */
    /* flex: 1 1 calc(33.33% - 20px);   */
    flex: 0 0 calc(33.33% - 20px); 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.card-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.card-details:hover h3 {
    text-decoration: underline;
}

/* Image container styling */
.img-container img {
    width: 100%;
    height: auto;
    display: block;
}

/* Card details styling */
.card-details {
    padding: 15px;
    align-items: center;
}

.card-details h3 {
    color: #ed3237;
    font-size: 1.4rem;
    margin: 0 0 10px;
    font-weight: 600;
}

.date-time {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 10px;
}

.card-details p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive design */
/* Responsive design */
@media (max-width: 1024px) {
    .card-item {
        flex: 1 1 calc(45% - 20px); /* Two cards per row on medium screens */
    }
}

@media (max-width: 768px) {
    .card-item {
        flex: 1 1 100%; /* One card per row on small screens */
    }
}