.card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 2rem;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.card-content {
    text-align: start;
}

img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}
video {
    width: 100%;
    border-radius: 10px;
    margin-top: 1rem;
}
.images {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}
.image-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    text-align: center;
}
.card-footer {
    margin-top: 1rem;
    padding: 1rem;
    border-top: 1px solid #ccc;
    width: 100%;
    text-align: center;
}
.media-title {
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: #666;
    text-align: center;
}

@media screen and (min-width: 768px) {
    .images {
        grid-template-columns: repeat(1, 1fr);
    }
    img {
        max-width: 400px;
    }
}
@media screen and (max-width: 480px) {
    .images {
        grid-template-columns: repeat(1, 1fr);
    }
    img {
        max-width: 300px;
    }
    
}