.linkboard {
    display: grid;
    grid-template-columns: repeat(2, 50%);
    grid-auto-rows: 80px;
    width: 100%;
    border-top: 2px solid #12183A;
    border-left:1px solid #D8D8D8;
    border-right:1px solid #D8D8D8;
    border-bottom:1px solid #D8D8D8;
}

.linkboard a {
	display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0 40px;
    gap:30px;
    transition: all 0.5s;
}

.linkboard a:nth-last-child(n + 2) {
	border-bottom:2px solid #D8D8D8;
}

.linkboard a:nth-child(odd) {
	border-right:2px solid #D8D8D8;
}

.linkboard a h5 {
	width:100%;
	font-size:18px;
	font-weight:700;
}

.linkboard a p {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 110px;
    min-width: 110px;
    font-size: 16px;
    font-weight: 600;
    color: #6e6e6e;
    white-space: nowrap;
    gap: 5px;
    transition: all 0.5s;
}

.linkboard a p span:nth-child(1) {
	display:flex;
	align-items:center;
    gap: 5px;
}

.linkboard a p span:nth-child(1)::after {
	content:"";
	display:block;
	width:1px;
	height:10px;
	background-color:#6e6e6e;
}

.linkboard a:hover {
	color:#fff;
	background-color:var(--navy);
}

.linkboard a:hover p {
	color:#fff;
}

.writebtn {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
}

.writebtn a {
    padding: 10px 20px;
    border-radius: 5px;
    color: #fff;
    background-color: #10193A;
    transition:all 0.5s;
}

.writebtn a:hover {
	background-color:#000;
}

.post__null {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    margin-top: 50px;
}

/* 반응형 */
@media screen and (max-width:1250px) {
	
}

@media screen and (max-width:1025px) {
	
	.linkboard {
	    grid-template-columns: 100%;
	}
	
	.linkboard a:nth-child(odd) {
		border-right:none;
	}
	
}

@media screen and (max-width:769px) {
	
	.linkboard a {
		padding: 0 20px;
		gap:10px;
	}
	
}



















