/* Scholarship Section Styles */
.scholarship-item {
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	border-radius: 12px;
	padding: 20px;
	margin-bottom: 20px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	border: 1px solid #dee2e6;
}

.scholarship-item:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.scholarship-title {
	font-size: 1.1rem;
	font-weight: 600;
	color: #495057;
	margin-bottom: 8px;
}

.scholarship-field {
	color: #6c757d;
	font-size: 0.9rem;
	margin-bottom: 10px;
}

.scholarship-slug {
	background: #e9ecef;
	color: #495057;
	padding: 4px 8px;
	border-radius: 4px;
	font-size: 0.8rem;
	display: inline-block;
}

/* Scholarship Card Layout */
.scholarship-card {
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	border-radius: 12px;
	padding: 20px;
	margin-bottom: 20px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	border: 1px solid #dee2e6;
	height: 100%;
}

.scholarship-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.scholarship-card-header {
	background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
	color: white;
	padding: 15px 20px;
	border-radius: 8px 8px 0 0;
	margin: -20px -20px 15px -20px;
}

.scholarship-card-body {
	flex-grow: 1;
}

.scholarship-card-footer {
	margin-top: 15px;
	padding-top: 15px;
	border-top: 1px solid #dee2e6;
}

.scholarship-icon {
	font-size: 2rem;
	color: #007bff;
	margin-bottom: 15px;
	text-align: center;
}

.scholarship-title {
	font-size: 1.1rem;
	font-weight: 600;
	color: #495057;
	margin-bottom: 8px;
}

.scholarship-field {
	color: #6c757d;
	font-size: 0.9rem;
	margin-bottom: 10px;
}

/* Animation */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.fadeInUp {
	animation: fadeInUp 0.6s ease-out;
}

/* Scholarship Details Styles */
.scholarship-details {
	background-color: #f8f9fa;
	margin-top: 15px;
	border: 1px solid #e9ecef;
	border-radius: 0;
}

.scholarship-section {
	margin-bottom: 0;
}

.scholarship-section:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
}

.scholarship-section-header {
	font-size: 1.2rem;
	font-weight: 700;
	color: #2c3e50;
	margin: 0;
	padding: 1rem;
	background-color: #f8f9fa;
}

.scholarship-section-content {
	color: inherit;
	line-height: inherit;
	font-size: inherit;
	padding: 1rem;
}

.scholarship-section-content h1,
.scholarship-section-content h2,
.scholarship-section-content h3,
.scholarship-section-content h4,
.scholarship-section-content h5,
.scholarship-section-content h6 {
	color: #2c3e50;
	margin-top: 20px;
	margin-bottom: 12px;
	font-weight: 600;
}

.scholarship-section-content h1 {
	font-size: 1.5rem;
}

.scholarship-section-content h2 {
	font-size: 1.3rem;
}

.scholarship-section-content h3 {
	font-size: 1.1rem;
}

.scholarship-section-content p {
	margin-bottom: inherit;
	text-align: inherit;
}

.scholarship-section-content ul,
.scholarship-section-content ol {
	margin-bottom: 15px;
	padding-left: 25px;
}

.scholarship-section-content li {
	margin-bottom: 8px;
	line-height: 1.6;
}

.scholarship-section-content strong {
	font-weight: 700;
	color: #2c3e50;
}

.scholarship-section-content em {
	font-style: italic;
	color: #6c757d;
}

.scholarship-section-content a {
	color: #007bff;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.2s ease;
}

.scholarship-section-content a:hover {
	color: #0056b3;
	text-decoration: underline;
}

.scholarship-section-content br {
	display: block;
	margin: 8px 0;
}

/* Loading State */
.scholarship-details.loading {
	opacity: 0.8;
	transition: opacity 0.3s ease;
}

.scholarship-details .text-center {
	color: #6c757d;
	padding: 40px 20px;
}

.scholarship-details .text-center p {
	margin-top: 15px;
	font-size: 0.9rem;
	font-weight: 500;
}

.spinner-border {
	color: #007bff;
	width: 2rem;
	height: 2rem;
}

/* Click to expand styling - follows common web patterns */
.click-to-expand {
	color: #007bff;
	font-size: 0.85rem;
	font-weight: 500;
	opacity: 0.8;
	margin-left: 8px;
}
