/* 모바일 기본 */
.support_container {
    display: grid;
    grid-template-columns: 1fr; /* 1열 */
    gap: 10px; /* 요소 간격 */
    margin: 16px;
    min-width: 300px;
}

.support_item {
    padding: 8px;
}

.btn-link {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5em;
    color: #fff;
    text-decoration: none;
    padding: 0.75em 1em;
    border-radius: 4px;
    display: flex;
    width: 100%;
    background-color: #2578BB;
}

.btn-link .icon {
    width: 20px;
    height: 20px;
    color: #fff;
}

.btn-link .btn-name {
    color: #fff;
    font-size: 16px;
}

.support_footer {
    text-align: center;
    padding-top: 24px;
}

.support_contents {
    border: 1px solid #EFEFEF;
    padding: 0 16px;
    border-radius: 8px;
    background-color: #EFEFEF;
    margin: 16px 0px;
    padding: 16px;
    line-height: 1.2;
}

.support_contents p:nth-child(1) {
  font-size: 17.6px;
  padding-bottom: 12px;
}

.support_contents p:nth-child(2) {
  font-size: 32px;
  font-weight: bold;
  padding-bottom: 4px;
}

.support_contents p:nth-child(3) {
  font-size: 17.6px;
}

/* PC (769px 이상일 때) */
@media screen and (min-width:769px) {
    .support_container {
        grid-template-columns: 1fr 1fr; /* 2열 */
        grid-template-rows: auto auto;  /* 2행 */
        grid-template-areas: 
            "first third" 
            "second .";
    }
    .support_item:nth-child(1) { grid-area: first; }
    .support_item:nth-child(2) { grid-area: second; }
    .support_item:nth-child(3) { grid-area: third; }

    .support_footer {
        padding-top: 54px;
    }
}
