:root {
    --Black: #000000;
    --Black-2: #0F0F10;
    --Gray: #5A5C63;
    --Gray-2: #70737C;
    --Gray-3: #EAEBEC;
    --Gray-4: #AEB0B6;
    --Gray-5: #F4F4F5;
    --Gray-6: #F7F7F8;
    --Gray-7: #000000BD;
    --Light-Gray: #56838B;
    --White: #FFFFFF;
    --Primary: #547780;
    --Secondary: #A0AFB8;
    --Red: #FF0000;
}

/* ===== Colors ===== */
.bg-primary {
    background-color: #547780;
}

.bg-secondary {
    background-color: #A0AFB8;
}

.bg-dark {
    background-color: #383838;
}

.bg-light {
    background-color: #F4F4F5;
}

.bg-section {
    background-color: #F4F4F5;
}

/* 포인터 */
.cursor-pointer {
    cursor: pointer;
}

/* 글자색 */
.txt-primary {
    color: #547780;
}

.txt-secondary {
    color: #A0AFB8;
}

.txt-dark {
    color: #383838;
}

.txt-light {
    color: #F4F4F5;
}

.txt-white {
    color: #FFFFFF;
}

.txt-black {
    color: #000000;
}

.txt-gray {
    color: #70737C;
}

/* Flexbox */
.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.flex-row {
    flex-direction: row;
}

.flex-wrap {
    flex-wrap: wrap;
}

.items-center {
    align-items: center;
}

.items-start {
    align-items: flex-start;
}

.items-end {
    align-items: flex-end;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-around {
    justify-content: space-around;
}

.justify-evenly {
    justify-content: space-evenly;
}

.gap-1 {
    gap: 0.25rem;
}

/* 4px */
.gap-2 {
    gap: 0.5rem;
}

/* 8px */
.gap-4 {
    gap: 1rem;
}

/* 16px */
.gap-8 {
    gap: 2rem;
}

/* 32px */

/* ===== Spacing ===== */
/* Margin */
.m-0 {
    margin: 0;
}

.m-1 {
    margin: 0.25rem;
}

.m-2 {
    margin: 0.5rem;
}

.m-4 {
    margin: 1rem;
}

.m-8 {
    margin: 2rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.ml-2 {
    margin-left: 0.5rem;
}

.mr-2 {
    margin-right: 0.5rem;
}

/* Padding */
.p-0 {
    padding: 0;
}

.p-1 {
    padding: 0.25rem;
}

.p-2 {
    padding: 0.5rem;
}

.p-4 {
    padding: 1rem;
}

.p-8 {
    padding: 2rem;
}

.pt-2 {
    padding-top: 0.5rem;
}

.pb-2 {
    padding-bottom: 0.5rem;
}

.pl-2 {
    padding-left: 0.5rem;
}

.pr-2 {
    padding-right: 0.5rem;
}

/* ===== Typography ===== */
.txt-left {
    text-align: left;
}

.txt-center {
    text-align: center;
}

.txt-right {
    text-align: right;
}

/* Font Weight Utilities */
.txt-thin {
    font-weight: 100;
}

/* 얇게 */
.txt-extralight {
    font-weight: 200;
}

.txt-light {
    font-weight: 300;
}

.txt-normal {
    font-weight: 400;
}

/* 기본 */
.txt-medium {
    font-weight: 500;
}

.txt-semibold {
    font-weight: 600;
}

.txt-bold {
    font-weight: 700;
}

/* 일반 bold */
.txt-extrabold {
    font-weight: 800;
}

.txt-black {
    font-weight: 900;
}

/* 가장 두껍게 */

.txt-16 {
    font-size: 1rem;
}

.txt-18 {
    font-size: 1.125rem;
}

.txt-20 {
    font-size: 1.25rem;
}

.txt-22 {
    font-size: 1.375rem;
}

.txt-24 {
    font-size: 1.5rem;
}

.txt-26 {
    font-size: 1.625rem;
}

.txt-28 {
    font-size: 1.75rem;
}

.txt-30 {
    font-size: 1.875rem;
}

.txt-32 {
    font-size: 2rem;
}

.txt-34 {
    font-size: 2.125rem;
}

.txt-36 {
    font-size: 2.25rem;
}

.txt-56 {
    font-size: 3.5rem;
}


/* ===== Utility ===== */
.w-full {
    width: 100%;
}

.h-full {
    height: 100%;
}

.hidden {
    display: none !important;
}

@media (max-width: 767px) {
    .mo-hidden {
        display: none !important;
    }
}

@media (min-width: 768px) {
    .pc-hidden {
        display: none !important;
    }
}

.block {
    display: block !important;
}

.inline-block {
    display: inline-block !important;
}