/* =========================================================
   DAYLOG RELATED POSTS
   CATEGORY + TITLE + DATE
   ONE LINE COMPACT
========================================================= */

.dlrp,
.dlrp * {
	box-sizing: border-box;
}


/* =========================================================
   전체 영역
   본문과 관련글 사이 구분선
========================================================= */

.dlrp {
	width: 100%;
	max-width: 720px;

	margin: 18px auto 0 !important;
	padding: 14px 0 0 !important;

	border: 0 !important;
	border-top: 1px solid rgba(0, 0, 0, 0.12) !important;

	background: transparent !important;
	box-shadow: none !important;
}


/* =========================================================
   내부
========================================================= */

.dlrp-inner {
	width: 100%;

	margin: 0 !important;
	padding: 0 !important;

	border: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
}


/* =========================================================
   섹션 제목
========================================================= */

.dlrp-heading {
	margin: 0 0 7px !important;
	padding: 0 !important;

	font-size: 17px;
	font-weight: 700;
	line-height: 1.35;

	letter-spacing: -0.035em;
}


/* =========================================================
   목록
========================================================= */

.dlrp-list {
	display: block;

	width: 100%;

	margin: 0 !important;
	padding: 0 !important;

	border: 0 !important;
	background: transparent !important;
}


/* =========================================================
   개별 글
========================================================= */

.dlrp-item {
	display: block;

	width: 100%;

	margin: 0 !important;
	padding: 0 !important;

	border: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
}


/* =========================================================
   한 줄 링크
========================================================= */

.dlrp-link {
	display: flex;

	align-items: center;

	width: 100%;
	min-width: 0;

	gap: 8px;

	margin: 0 !important;
	padding: 5px 0 !important;

	color: inherit !important;
	text-decoration: none !important;

	border: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
}


/* =========================================================
   카테고리
========================================================= */

.dlrp-category {
	display: block;

	flex: 0 0 auto;

	margin: 0 !important;
	padding: 0 !important;

	font-size: 10px;
	font-weight: 600;
	line-height: 1.3;

	white-space: nowrap;

	opacity: 0.48;
}


/* =========================================================
   글 제목
   무조건 한 줄
   길면 ...
========================================================= */

.dlrp-title {
	display: block;

	flex: 1 1 auto;

	min-width: 0;

	margin: 0 !important;
	padding: 0 !important;

	overflow: hidden;

	font-size: 14px;
	font-weight: 500;
	line-height: 1.4;

	letter-spacing: -0.025em;

	white-space: nowrap;
	text-overflow: ellipsis;
}


/* =========================================================
   날짜
========================================================= */

.dlrp-date {
	display: block;

	flex: 0 0 auto;

	margin: 0 !important;
	padding: 0 !important;

	font-size: 9.5px;
	font-weight: 400;
	line-height: 1.3;

	white-space: nowrap;

	opacity: 0.38;
}


/* =========================================================
   PC Hover
========================================================= */

@media (hover: hover) {

	.dlrp-link:hover .dlrp-title {
		text-decoration: underline;

		text-decoration-thickness: 1px;
		text-underline-offset: 3px;
	}

}


/* =========================================================
   모바일
========================================================= */

@media (max-width: 700px) {

	.dlrp {
		width: calc(100% - 28px);

		margin-top: 16px !important;
		padding-top: 12px !important;
	}


	.dlrp-heading {
		margin-bottom: 6px !important;

		font-size: 16px;
	}


	.dlrp-link {
		gap: 6px;

		padding-top: 4px !important;
		padding-bottom: 4px !important;
	}


	.dlrp-category {
		font-size: 9px;
	}


	.dlrp-title {
		font-size: 13.5px;
		line-height: 1.4;
	}


	.dlrp-date {
		font-size: 8.5px;
	}

}


/* =========================================================
   작은 모바일
========================================================= */

@media (max-width: 380px) {

	.dlrp {
		width: calc(100% - 24px);

		margin-top: 14px !important;
		padding-top: 11px !important;
	}


	.dlrp-link {
		gap: 5px;

		padding-top: 4px !important;
		padding-bottom: 4px !important;
	}


	.dlrp-category {
		font-size: 8.5px;
	}


	.dlrp-title {
		font-size: 13px;
	}


	.dlrp-date {
		font-size: 8px;
	}

}


/* =========================================================
   다크모드
========================================================= */

@media (prefers-color-scheme: dark) {

	.dlrp {
		border-top-color: rgba(255, 255, 255, 0.16) !important;
	}

}