.videos-grid {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 30px;
padding: 20px;
max-width: 1200px;
margin: 0 auto;
}
.video-item {
background-color: #1e4674;
border-radius: 12px;
color: white;
padding: 20px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
transition: transform 0.3s ease;
flex: 1 1 280px;
max-width: 380px;
box-sizing: border-box;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.video-item:hover {
transform: translateY(-5px);
}
.video-title {
text-align: center;
font-size: 1.2rem;
font-weight: bold;
margin-bottom: 10px;
}
.video-description {
text-align: center;
margin-bottom: auto;
font-size: 0.95rem;
line-height: 1.4;
}
.amazon-link {
color: #FFD700 !important;
font-weight: bold;
text-decoration: none;
}
.amazon-link:hover {
text-decoration: underline;
}
.video-embed {
margin-top: 20px;
width: 100%;
aspect-ratio: 16 / 9;
overflow: hidden;
border-radius: 8px;
} @media (max-width: 768px) {
.videos-grid {
padding: 10px;
}
.video-item {
flex: 1 1 100%;
max-width: 100%;
}
}
#load-more {
display: inline-block;
margin: 20px auto;
padding: 12px 24px;
font-size: 16px;
font-weight: 600;
color: #fff;
background-color: #1e2a38;
border: none;
border-radius: 6px;
cursor: pointer;
text-align: center;
transition: background-color 0.3s ease;
}
#load-more:hover {
background-color: #1a3fb2;
}
#load-more:focus {
outline: none;
box-shadow: 0 0 0 2px #a3b8f7;
}