Schoolwiki സംരംഭത്തിൽ നിന്ന്
.programs {
display: flex;
flex-direction: column;
gap: 2rem;
margin: 1rem 0;
}
.program-box {
background: #fafafa;
border: 1px solid #ddd;
border-radius: 12px;
box-shadow: 0 2px 6px rgba(0,0,0,0.1);
overflow: hidden;
}
.program-title {
font-size: 1.3em;
font-weight: bold;
padding: 0.6rem;
background: linear-gradient(90deg, #e0e0e0, #f5f5f5);
border-bottom: 1px solid #ccc;
text-align: center;
}
.program-body {
display: flex;
flex-direction: row;
align-items: flex-start;
gap: 1rem;
padding: 1rem;
}
.program-image {
flex: 0 0 120px;
text-align: center;
}
.program-text {
flex: 1;
font-size: 1.05em;
line-height: 1.6;
text-align: justify;
}
.program-link {
margin-top: 0.5rem;
font-weight: bold;
}
.program-link a {
color: #004ec3;
text-decoration: none;
}
.program-link a:hover {
text-decoration: underline;
}
/* Mobile responsiveness */
@media (max-width: 768px) {
.program-body {
flex-direction: column;
align-items: center;
text-align: center;
}
.program-text {
text-align: left;
}
}