/* Sleek Minimalist List Styles for Annual Reports & Yearly Projects */
.ar-wrapper {
	font-family: inherit;
	color: #333;
	margin-bottom: 50px;
}

.ar-header-title {
	font-size: 20px;
	font-weight: 700;
	color: #192f59;
	margin-top: 40px;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	border-left: 4px solid #fdc800;
	padding-left: 12px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

.ar-list {
	border-top: 1px solid #e2e8f0;
	margin-bottom: 40px;
}

.ar-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 20px;
	border-bottom: 1px solid #e2e8f0;
	transition: all 0.2s ease;
	background: #ffffff;
}

.ar-item:hover {
	background-color: rgba(25, 47, 89, 0.02);
}

.ar-item-left {
	display: flex;
	align-items: center;
	gap: 24px;
	flex-grow: 1;
	min-width: 0;
}

.ar-year-badge {
	background-color: #192f59;
	color: #ffffff;
	font-size: 14px;
	font-weight: 700;
	width: 60px;
	height: 36px;
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: all 0.2s ease;
}

.ar-item:hover .ar-year-badge {
	background-color: #fdc800;
	color: #192f59;
}

.ar-details {
	min-width: 0;
}

.ar-title {
	font-size: 16px;
	font-weight: 600;
	color: #2d3748;
	margin: 0 0 2px 0;
	transition: color 0.2s ease;
}

.ar-item:hover .ar-title {
	color: #192f59;
}

.ar-subtitle {
	font-size: 13px;
	color: #718096;
	margin: 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.ar-item-right {
	display: flex;
	align-items: center;
	gap: 15px;
	flex-shrink: 0;
}

.ar-badge-lang {
	font-size: 11px;
	font-weight: 600;
	background-color: #edf2f7;
	color: #4a5568;
	padding: 2px 8px;
	border-radius: 4px;
	letter-spacing: 0.5px;
}

.ar-btn-download {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background-color: transparent;
	border: 1px solid #192f59;
	color: #192f59;
	padding: 6px 14px;
	border-radius: 20px;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none !important;
	transition: all 0.2s ease;
}

.ar-btn-download:hover {
	background-color: #192f59;
	color: #ffffff;
}

.ar-btn-download i {
	font-size: 14px;
}

/* Secondary style for projects */
.ar-project-list {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 15px;
	margin-bottom: 20px;
}

.ar-project-item {
	background-color: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	padding: 14px 18px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	text-decoration: none !important;
	transition: all 0.2s ease;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.ar-project-item:hover {
	border-color: #fdc800;
	background-color: rgba(253, 200, 0, 0.03);
	transform: translateX(4px);
}

.ar-project-left {
	display: flex;
	align-items: center;
	gap: 12px;
}

.ar-project-num {
	font-size: 13px;
	font-weight: 700;
	color: #a0aec0;
}

.ar-project-item:hover .ar-project-num {
	color: #fdc800;
}

.ar-project-name {
	font-size: 14px;
	font-weight: 600;
	color: #4a5568;
}

.ar-project-item:hover .ar-project-name {
	color: #192f59;
}

.ar-project-arrow {
	color: #cbd5e0;
	font-size: 12px;
	transition: transform 0.2s ease;
}

.ar-project-item:hover .ar-project-arrow {
	color: #192f59;
	transform: translateX(2px);
}

@media (max-width: 600px) {
	.ar-item {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
		padding: 16px;
	}
	.ar-item-right {
		width: 100%;
		justify-content: space-between;
	}
	.ar-item-left {
		width: 100%;
	}
}

/* Sleek Showcase List Styles for ICT Strategic Plan */
.sp-wrapper {
	font-family: inherit;
	color: #333;
	margin-bottom: 50px;
}

.sp-list {
	border-top: 1px solid #e2e8f0;
	margin-bottom: 30px;
}

.sp-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px;
	border-bottom: 1px solid #e2e8f0;
	transition: all 0.2s ease;
	background: #ffffff;
}

.sp-item:hover {
	background-color: rgba(25, 47, 89, 0.02);
}

.sp-item-left {
	display: flex;
	align-items: center;
	gap: 24px;
	flex-grow: 1;
	min-width: 0;
}

.sp-thumb-wrapper {
	width: 70px;
	height: 95px;
	border-radius: 6px;
	overflow: hidden;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
	flex-shrink: 0;
	border: 1px solid #e2e8f0;
	transition: all 0.3s ease;
}

.sp-item:hover .sp-thumb-wrapper {
	transform: scale(1.05);
	box-shadow: 0 8px 15px rgba(25, 47, 89, 0.15);
	border-color: #192f59;
}

.sp-thumb-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sp-details {
	min-width: 0;
}

.sp-title {
	font-size: 16px;
	font-weight: 700;
	color: #2d3748;
	margin: 0 0 6px 0;
	transition: color 0.2s ease;
}

.sp-item:hover .sp-title {
	color: #192f59;
}

.sp-desc {
	font-size: 13px;
	color: #718096;
	margin: 0;
	display: flex;
	align-items: center;
	gap: 8px;
}

.sp-badge {
	font-size: 11px;
	font-weight: 600;
	background-color: rgba(253, 200, 0, 0.15);
	color: #8a6d00;
	padding: 2px 8px;
	border-radius: 4px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

.sp-item-right {
	display: flex;
	align-items: center;
	gap: 15px;
	flex-shrink: 0;
}

.sp-btn-view {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background-color: transparent;
	border: 1px solid #192f59;
	color: #192f59;
	padding: 8px 18px;
	border-radius: 20px;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none !important;
	cursor: pointer;
	transition: all 0.2s ease;
}

.sp-btn-view:hover {
	background-color: #192f59;
	color: #ffffff;
}

.sp-btn-view i {
	font-size: 14px;
}

/* Premium Modal Styles */
.sp-modal {
	display: none;
	position: fixed;
	z-index: 9999;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(15, 23, 42, 0.85);
	backdrop-filter: blur(8px);
	animation: spFadeIn 0.3s ease;
}

.sp-modal-content {
	position: relative;
	margin: 3vh auto;
	width: 90%;
	height: 94vh;
	background: #ffffff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
	transform: scale(0.95);
	animation: spScaleUp 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.sp-close-btn {
	position: absolute;
	top: 15px;
	right: 15px;
	color: #ffffff;
	background: rgba(15, 23, 42, 0.6);
	border: 1px solid rgba(255, 255, 255, 0.2);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	cursor: pointer;
	z-index: 10000;
	transition: all 0.2s ease;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.sp-close-btn:hover {
	background: #e53e3e;
	border-color: #e53e3e;
	transform: scale(1.1);
}

.sp-iframe {
	width: 100%;
	height: 100%;
	border: none;
}

@keyframes spFadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes spScaleUp {
	from { transform: scale(0.95); }
	to { transform: scale(1); }
}

@media (max-width: 600px) {
	.sp-item {
		flex-direction: column;
		align-items: flex-start;
		gap: 15px;
		padding: 16px;
	}
	.sp-item-right {
		width: 100%;
		justify-content: flex-end;
	}
	.sp-item-left {
		width: 100%;
	}
}
