.wds-wrap{
	--wds-navy:#0f2545;
	--wds-gold:#c9a227;
	--wds-text:#3b4658;
	--wds-line:#e8eaef;
	--wds-radius:14px;
}
.wds-heading{
	text-align:center;
	color:var(--wds-navy);
	margin:0 0 28px;
}
.wds-grid{
	display:grid;
	grid-template-columns:repeat(3,1fr);
	gap:26px;
}
.wds-cols-1 .wds-grid{grid-template-columns:1fr;}
.wds-cols-2 .wds-grid{grid-template-columns:repeat(2,1fr);}
.wds-cols-4 .wds-grid{grid-template-columns:repeat(4,1fr);}

.wds-card{
	display:flex;
	flex-direction:column;
	background:#fff;
	border:1px solid var(--wds-line);
	border-radius:var(--wds-radius);
	overflow:hidden;
	text-decoration:none !important;
	transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.wds-card:hover{
	transform:translateY(-4px);
	box-shadow:0 14px 30px rgba(15,37,69,.12);
	border-color:rgba(201,162,39,.45);
}
.wds-thumb{
	position:relative;
	aspect-ratio:16/9;
	background:linear-gradient(135deg,var(--wds-navy),#1b3a68);
	overflow:hidden;
}
.wds-thumb img{
	width:100%;
	height:100%;
	object-fit:cover;
	display:block;
	transition:transform .5s ease;
}
.wds-card:hover .wds-thumb img{transform:scale(1.05);}
.wds-thumb-empty::after{
	content:"";
	position:absolute;
	left:50%;top:50%;
	width:46px;height:46px;
	margin:-23px 0 0 -23px;
	border:2px solid rgba(201,162,39,.85);
	border-radius:50%;
}
.wds-body{
	padding:20px 22px 24px;
	display:flex;
	flex-direction:column;
	flex:1;
}
.wds-date{
	font-size:12px;
	letter-spacing:.06em;
	text-transform:uppercase;
	color:var(--wds-gold);
	margin-bottom:8px;
}
.wds-title{
	font-size:17px;
	line-height:1.4;
	color:var(--wds-navy);
	margin:0 0 10px;
	font-weight:600;
}
.wds-excerpt{
	font-size:14px;
	line-height:1.6;
	color:var(--wds-text);
	margin:0 0 14px;
}
.wds-more{
	margin-top:auto;
	align-self:flex-start;
	display:inline-flex;
	align-items:center;
	gap:8px;
	font-size:13px;
	font-weight:600;
	letter-spacing:.02em;
	line-height:1.2;
	color:var(--wds-navy);
	transition:color .25s ease, gap .25s ease;
}
.wds-more::after{
	content:"";
	width:6px;
	height:6px;
	margin-top:-1px;
	border-right:2px solid currentColor;
	border-bottom:2px solid currentColor;
	transform:rotate(-45deg);
	transition:transform .25s ease;
}
.wds-card:hover .wds-more{
	color:var(--wds-gold);
	gap:12px;
}
.wds-all{
	text-align:center;
	margin-top:32px;
}
.wds-align-left{text-align:left;}
.wds-align-right{text-align:right;}
.wds-all a{
	display:inline-block;
	padding:13px 34px;
	border:1px solid var(--wds-navy);
	border-radius:999px;
	color:var(--wds-navy);
	font-weight:600;
	text-decoration:none !important;
	transition:background .25s ease,color .25s ease;
}
.wds-all a:hover{
	background:var(--wds-navy);
	color:#fff;
}
.wds-filled a{
	background:var(--wds-navy);
	color:#fff;
	border-color:var(--wds-navy);
}
.wds-filled a:hover{
	background:var(--wds-gold);
	border-color:var(--wds-gold);
	color:#0f2545;
}
@media (max-width:849px){
	.wds-cols-3 .wds-grid,.wds-cols-4 .wds-grid{grid-template-columns:repeat(2,1fr);}
}
@media (max-width:549px){
	.wds-grid,
	.wds-cols-2 .wds-grid,
	.wds-cols-3 .wds-grid,
	.wds-cols-4 .wds-grid{grid-template-columns:1fr;}
}

/* --- Doktorsitesi bilgilendirme bloğu --- */
.wds-notice{
	display:flex;
	align-items:center;
	gap:22px;
	background:#fff;
	border:1px solid var(--wds-line);
	border-left:4px solid var(--wds-gold);
	border-radius:var(--wds-radius);
	padding:22px 26px;
	margin:0 0 34px;
	box-shadow:0 6px 18px rgba(15,37,69,.05);
}
.wds-notice-logo{
	flex:0 0 auto;
	width:62px;
	height:62px;
	display:flex;
	align-items:center;
	justify-content:center;
}
.wds-notice-logo img{
	width:100%;
	height:100%;
	object-fit:contain;
	display:block;
}
.wds-notice-body{flex:1 1 auto;min-width:0;}
.wds-notice-title{
	margin:0 0 6px;
	font-size:17px;
	font-weight:700;
	line-height:1.35;
	color:var(--wds-navy);
}
.wds-notice-text{
	margin:0;
	font-size:14px;
	line-height:1.65;
	color:var(--wds-text);
}
.wds-notice-action{flex:0 0 auto;}
.wds-notice-btn{
	display:inline-flex;
	align-items:center;
	gap:6px;
	white-space:nowrap;
	padding:12px 22px;
	border-radius:999px;
	background:var(--wds-navy);
	color:#fff !important;
	font-size:14px;
	font-weight:600;
	text-decoration:none !important;
	transition:background .25s ease,color .25s ease,transform .25s ease;
}
.wds-notice-btn svg{width:16px;height:16px;flex:0 0 auto;}
.wds-notice-btn:hover{
	background:var(--wds-gold);
	color:#0f2545 !important;
	transform:translateX(2px);
}
@media (max-width:849px){
	.wds-notice{
		flex-wrap:wrap;
		gap:16px;
		padding:20px;
	}
	.wds-notice-logo{width:48px;height:48px;}
	.wds-notice-body{flex:1 1 200px;}
	.wds-notice-action{flex:1 1 100%;}
	.wds-notice-btn{width:100%;justify-content:center;}
}