header {
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    padding: 0 1.5rem;
    z-index: 7777;
    background: #fff;
    border-bottom: 1px solid #d7d3d2;
}
header h1 {
    width: 10rem;
}
header h1 a {
    width: 100%;
}
header h1 a img {
    width: 100%;
}
header .backTitle {
    display: none;
    gap: 1rem;
    align-items: center;
}
header .backTitle button {
    width: 1rem;
}
header .backTitle button img {
    width: 100%;
}
header .backTitle h2 {
    font-size: 1.6rem;
    font-weight: 800;
}
header > {}
header > button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.4rem;
    color: #9f9995;
}
header > button img {
    width: 1rem;
}

#logoutModal {
    display: none;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.4);
    position: fixed;
    width: 100%;
    height: 100%;
    padding: 0 1.5rem;
    z-index: 8888;
    top: 0;
}
#logoutModal .box {
    border-radius: 1rem;
    padding: 6rem 1.5rem;
    background: #fff;
    width: 100%;
    text-align: center;
}
#logoutModal .box h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #704112;
    margin-bottom: 2rem;
}
#logoutModal .box .buttonWrap {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 4rem;
}
#logoutModal .box .buttonWrap form {
    width: 50%;
}
#logoutModal .box .buttonWrap form button {
    width: 100%;
    border-radius: 1rem;
    font-size: 1.4rem;
    background: #704112;
    color: #fff;
    padding: 1.5rem 0;
}
#logoutModal .box .buttonWrap > button {
    width: 50%;
    border-radius: 1rem;
    font-size: 1.4rem;
    background: #f4f4f4;
    padding: 1.5rem 0;
}
#logoutModal .box > button {
    font-size: 1.4rem;
    font-weight: 600;
    border-bottom: 1px solid #333;
}

#withdrawModal {
    display: none;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.4);
    position: fixed;
    width: 100%;
    height: 100%;
    padding: 0 1.5rem;
    z-index: 8888;
    top: 0;
}
#withdrawModal .box {
    border-radius: 1rem;
    padding: 6rem 1.5rem;
    background: #fff;
    width: 100%;
    text-align: center;
}
#withdrawModal .box h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #704112;
    margin-bottom: 1.5rem;
}
#withdrawModal .box p {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    color: #aca7a3;
}
#withdrawModal .box .buttonWrap {
    display: flex;
    gap: 0.5rem;
}
#withdrawModal .box .buttonWrap form {
    width: 50%;
}
#withdrawModal .box .buttonWrap form button {
    width: 100%;
    border-radius: 1rem;
    font-size: 1.4rem;
    background: #704112;
    color: #fff;
    padding: 1.5rem 0;
}
#withdrawModal .box .buttonWrap > button {
    width: 50%;
    border-radius: 1rem;
    font-size: 1.4rem;
    background: #f4f4f4;
    padding: 1.5rem 0;
}

main {
    padding: 2rem 1.5rem 10rem;
}
main .dayWrap {
    box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.1);
    display: flex;
    border-radius: 1rem;
    margin-bottom: 2rem;
}
main .dayWrap .day {
    width: calc(100% / 7);
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
}
main .dayWrap .day h2 {
    font-size: 1.4rem;
}
main .dayWrap .day .status {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    background: #f4f4f4;
    width: 3rem;
    height: 3rem;
}
main .dayWrap .day .status.today {
    border: 1px solid #704112;
}
main .dayWrap .day .status img {
    width: 70%;
}
main .todayWrap {
    padding: 2rem 0;
}
main .todayWrap h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}
main .todayWrap > a {
    position: relative;
    margin-bottom: 1.5rem;
    display: block;
}
main .todayWrap > a > img {
    width: 100%;
}
main .todayWrap > a .search {
    width: 1.5rem;
    position: absolute;
    top: 2rem;
    right: 2rem;
}
main .todayWrap > a .text {
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(100% - 3rem);
    transform: translate(-50%, -50%);
    display: flex;
    flex-flow: column nowrap;
    gap: 1.5rem;
    text-align: center;
}
main .todayWrap > a .text p {
    font-size: 1.4rem;
    color: #cfc9c7;
}
main .todayWrap > a .text pre {
    font-size: 1.4rem;
    color: #fff;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;      /* 최대 2줄 */
    overflow: hidden;           /* 넘치는 텍스트 숨김 */
    text-overflow: ellipsis;    /* 말줄임표(...) 표시 */
    white-space: normal;        /* 줄바꿈 허용 */
}
main .todayWrap #checkFrm {
    display: flex;
    flex-flow: column nowrap;
    gap: 2rem;
}
main .todayWrap #checkFrm a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-image: url(../img/main-btn-1.png);
    background-repeat: no-repeat;
    background-size: 3rem;
    background-position: left 1.5rem center;
    background-color: #f4f4f4;
    padding: 2rem 1.5rem 2rem 6rem;
    border-radius: 1rem;
}
main .todayWrap #checkFrm a:nth-of-type(2) {
    background-image: url(../img/main-btn-2.png);
}
main .todayWrap #checkFrm a:nth-of-type(3) {
    background-image: url(../img/main-btn-3.png);
}
main .todayWrap #checkFrm a .text {
    display: flex;
    flex-flow: column nowrap;
    gap: 1rem;
}
main .todayWrap #checkFrm a .text p {
    font-size: 1.4rem;
}
main .todayWrap #checkFrm a .text h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #704112;
}
main .todayWrap #checkFrm a .inputWrap {
    width: 2.5rem;
    height: 2.5rem;
    position: relative;
}
main .todayWrap #checkFrm a .inputWrap label {
    background-image: url(../img/check-3.png);
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 100%;
    width: 2.5rem;
    height: 2.5rem;
    display: inline-block;
}
main .todayWrap #checkFrm a .inputWrap input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
main .todayWrap #checkFrm a .inputWrap input:checked + label {
    background-image: url(../img/check-1.png);
}
main .allWrap {
    padding-top: 2rem;
}
main .allWrap h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
main .allWrap h2 a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.4rem;
}
main .allWrap h2 a img {
    width: 0.8rem;
}
main .allWrap .all {
    border-radius: 1rem;
    background: #f4f4f4;
    padding: 0 1.5rem;
}
main .allWrap .all .content {
    padding: 1.5rem 0;
    border-bottom: 1px solid #d7d4d3;
}
main .allWrap .all .content:last-child {
    border: none;
}
main .allWrap .all .content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #704112;
}
main .allWrap .all .content pre {
    font-size: 1.4rem;
    line-height: 1.4;
}
main .allWrap .noAll {
    display: flex;
    flex-flow: column nowrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    padding: 8rem 0;
    border-radius: 1rem;
    background: #f4f4f4;
}
main .allWrap .noAll h3 {
    font-size: 1.4rem;
    font-weight: 600;
}
main .allWrap .noAll p {
    font-size: 1.4rem;
    color: #a19c98;
}

/* 모아보기 */
main > .all {
    display: flex;
    flex-flow: column nowrap;
    gap: 1.5rem;
}
main > .all .content {
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid #a9a4a0;
}
main > .all .content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #704112;
}
main > .all .content pre {
    font-size: 1.4rem;
    line-height: 1.4;
}
main > .noAll {
    display: flex;
    flex-flow: column nowrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    padding: 8rem 0;
    border-radius: 1rem;
    background: #f4f4f4;
}
main > .noAll h3 {
    font-size: 1.4rem;
    font-weight: 600;
}
main > .noAll p {
    font-size: 1.4rem;
    color: #a19c98;
}

/* 오늘의 QT */
main > .today {
    position: relative;
    margin-bottom: 3rem;
    display: block;
}
main > .today > img {
    width: 100%;
}
main > .today .text {
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(100% - 3rem);
    transform: translate(-50%, -50%);
    display: flex;
    flex-flow: column nowrap;
    gap: 1.5rem;
    text-align: center;
}
main > .today .text p {
    font-size: 1.4rem;
    color: #cfc9c7;
}
main > .today .text pre {
    font-size: 1.4rem;
    color: #fff;
    line-height: 1.4;
}
main > button {
    display: flex;
    flex-flow: column nowrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    width: 3rem;
    margin: 0 auto;
}
main > button img {
    width: 100%;
}
main > button span {
    font-size: 1.2rem;
}

/* 성경읽기 */
main .bibleWrap {
    display: flex;
    flex-flow: column nowrap;
}
main .bibleWrap .bible {
    border-bottom: 1px solid #d9d5d4;
}
main .bibleWrap .bible:last-child {
    border: none;
}
main .bibleWrap .bible .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}
main .bibleWrap .bible .top .left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
main .bibleWrap .bible .top .left em {
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    border-radius: 100%;
    background: #704112;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
main .bibleWrap .bible .top .left span {
    font-size: 1.4rem;
}
main .bibleWrap .bible .top .right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
main .bibleWrap .bible .top .right span {
    font-size: 1.4rem;
}
main .bibleWrap .bible .top .right img {
    width: 0.8rem;
}
main .bibleWrap .bible .bottom {
    display: none;
    flex-flow: column nowrap;
    padding: 0 2rem;
}
main .bibleWrap .bible.active .top {
    border-bottom: 1px solid #d9d5d4;
}
main .bibleWrap .bible.active .bottom {
    display: flex;
}
main .bibleWrap .bible .bottom a {
    font-size: 1.4rem;
    padding: 1.5rem 0;
}
main .pagination {
    display: flex;
    justify-content: center;
    margin-top: 4rem;
}
main .pagination a {
    width: 3rem;
    height: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
    font-weight: 600;
}
main .pagination a.on {
    border-radius: 100%;
    background: #704112;
    color: #fff;
}
main .pagination a img {
    width: 30%;
}
main > h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #704112;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
main > h2 span {
    font-size: 1.4rem;
    font-weight: 600;
}
main .bibleWrap2 {
    display: flex;
    flex-flow: column nowrap;
    gap: 1.5rem;
}
main .bibleWrap2 .bible {
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid #cecbc9;
}
main .bibleWrap2 .bible em {
    font-size: 1.4rem;
    font-weight: 600;
    color: #704112;
}
main .bibleWrap2 .bible span {
    font-size: 1.4rem;
    line-height: 1.4;
}
main #searchFrm {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}
main #searchFrm > input {
    padding: 1.5rem;
    border-radius: 1rem;
    background-color: #f4f4f4;
    background-image: url(../img/search-2.png);
    background-repeat: no-repeat;
    background-size: 1.5rem;
    background-position: right 1.5rem center;
    font-size: 1.4rem;
    width: 100%;
}
main #searchFrm select {
    font-size: 1.4rem;
    font-weight: 600;
    padding: 1.5rem;
    border-radius: 1rem;
    width: 100%;
    background-color: #f4f4f4;
    background-image: url(../img/arrow-3.png);
    background-repeat: no-repeat;
    background-size: 1rem;
    background-position: right 1.5rem center;
    border: none;
}
main #searchFrm select option {
    font-size: 1.4rem;
}
#settingBtn {
    position: fixed;
    bottom: 3rem;
    right: 1.5rem;
    width: 4rem;
    z-index: 1111;
}
#settingBtn img {
    width: 100%;
}
#colorModal {
    z-index: 9999;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    display: none;
    align-items: flex-end;
    background: rgba(0, 0, 0, 0.4);
}
#colorModal form {
    border-top-right-radius: 1rem;
    border-top-left-radius: 1rem;
    padding: 4rem 1.5rem;
    width: 100%;
    background: #fff;
    height: max-content;
}
#colorModal form .colorWrap {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 3rem;
}
#colorModal form .colorWrap button {
    width: calc(100% / 8);
    border-radius: 100%;
    aspect-ratio: 1/1;
}
#colorModal form .colorWrap button.selected {
    border: 1px solid #704112;
}
#colorModal form > button {
    padding: 1.5rem 0;
    border-radius: 1rem;
    background: #704112;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 600;
    width: 100%;
}
#fontModal {
    z-index: 9999;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    display: none;
    align-items: flex-end;
    background: rgba(0, 0, 0, 0.4);
}
#fontModal form {
    border-top-right-radius: 1rem;
    border-top-left-radius: 1rem;
    padding: 4rem 1.5rem;
    width: 100%;
    background: #fff;
    height: max-content;
}
#fontModal form .size {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}
#fontModal form .size h3 {
    font-size: 1.4rem;
    font-weight: 600;
}
#fontModal form .size .sizeWrap {
    display: flex;
    align-items: center;
    background: #f4f4f4;
    border-radius: 0.5rem;
    text-align: center;
    width: 50%;
}
#fontModal form .size .sizeWrap button {
    width: 20%;
    padding: 1rem 0;
}
#fontModal form .size .sizeWrap button img {
    width: 50%;
}
#fontModal form .size .sizeWrap p {
    width: 60%;
    font-size: 1.4rem;
}
#fontModal form .family {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}
#fontModal form .family h3 {
    font-size: 1.4rem;
    font-weight: 600;
}
#fontModal form .family .familyWrap {
    display: flex;
    background: #f4f4f4;
    width: 50%;
    border-radius: 0.5rem;
}
#fontModal form .family .familyWrap button {
    width: 50%;
    font-size: 1.4rem;
    padding: 1rem 0;
}
#fontModal form .family .familyWrap button.selected {
    background: #fff;
}
#fontModal form .family .familyWrap button:nth-of-type(1) {
    font-family: 'Nanum Gothic';
}
#fontModal form .family .familyWrap button:nth-of-type(2) {
    font-family: 'Nanum Myeongjo';
}
#fontModal form > button {
    padding: 1.5rem 0;
    border-radius: 1rem;
    background: #704112;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 600;
    width: 100%;
}

/* 묵상하기 */
main #feelFrm {}
main #feelFrm h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #704112;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}
main #feelFrm h2 span {
    font-size: 1.4rem;
    font-weight: 600;
}
main #feelFrm pre {
    font-size: 1.4rem;
    line-height: 1.4;
    margin-bottom: 4rem;
}
main #feelFrm .feelWrap {
    display: flex;
    gap: 1rem;
    flex-flow: row wrap;
    margin-bottom: 4rem;
}
main #feelFrm .feelWrap .feel {
    width: calc(50% - 0.5rem);
    height: 5rem;
    position: relative;
}
main #feelFrm .feelWrap .feel input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
main #feelFrm .feelWrap .feel input:checked + label {
    border: 1px solid #714214;
    background: #714214;
    color: #fff;
}
main #feelFrm .feelWrap .feel label {
    font-size: 1.4rem;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1.4;
    text-align: center;
    border: 1px solid #a9a4a0;
    border-radius: 1rem;
}
main #feelFrm textarea {
    border-radius: 1rem;
    border: 1px solid #a9a4a0;
    padding: 2rem;
    font-size: 1.4rem;
    line-height: 1.4;
    width: 100%;
    height: 15rem;
    margin-bottom: 4rem;
}
main #feelFrm > button {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    padding: 2rem 0;
    border-radius: 1rem;
    background: #704112;
    width: 100%;
    margin-bottom: 2rem;
}
main > a {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    padding: 2rem 0;
    border-radius: 1rem;
    background: #704112;
    width: 100%;
    display: block;
    text-align: center;
}
main > a.bottom {
    position: absolute;
    bottom: 4rem;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 3rem);
}
main #dateFrm {
    display: flex;
    gap: 1rem;
    margin-bottom: 4rem;
}
main #dateFrm select {
    font-size: 1.4rem;
    font-weight: 600;
    padding: 1.5rem;
    border-radius: 1rem;
    width: 50%;
    background-color: #f4f4f4;
    background-image: url(../img/arrow-3.png);
    background-repeat: no-repeat;
    background-size: 1rem;
    background-position: right 1.5rem center;
    border: none;
}
main #dateFrm select option {
    font-size: 1.4rem;
}
main .meditationWrap {
    display: flex;
    flex-flow: column nowrap;
    gap: 1.5rem;
}
main .meditationWrap a {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #a8a39f;
}
main .meditationWrap a .day {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}
main .meditationWrap a .day span {
    font-size: 1.4rem;
}
main .meditationWrap a .day strong {
    font-size: 1.6rem;
    font-weight: 800;
}
main .meditationWrap a .text {
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
    gap: 1.5rem;
    width: 80%;
}
main .meditationWrap a .text h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #704112;
}
main .meditationWrap a .text p {
    font-size: 1.4rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
main .meditationWrap > p {
    font-size: 1.4rem;
    font-weight: 600;
    text-align: center;
    padding-top: 10rem;
}
main > pre {
    font-size: 1.4rem;
    line-height: 1.4;
    margin-bottom: 4rem;
}
main > p {
    font-size: 1.4rem;
    padding: 2rem 0;
    border-radius: 1rem;
    background: #f4f4f4;
    text-align: center;
    font-weight: 600;
    margin-bottom: 4rem;
}

/* 성경통독 */
main #allFrm {}
main #allFrm h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #704112;
    margin-bottom: 1.5rem;
}
main #allFrm .inputWrap {
    font-size: 1.6rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 4rem;
}
main #allFrm .inputWrap input {
    width: 50%;
    font-size: 1.4rem;
    padding: 1.5rem;
    border-radius: 1rem;
    background: #f4f4f4;
}
main #allFrm .goalWrap {}
main #allFrm .goalWrap .goal {
    display: flex;
    flex-flow: column nowrap;
    gap: 1rem;
    margin-bottom: 2rem;
}
main #allFrm .goalWrap .goal input {
    font-size: 1.4rem;
    padding: 1.5rem;
    border-radius: 1rem;
    background: #f4f4f4;
}
main #allFrm .goalWrap button {
    padding: 0.5rem 1rem;
    border-radius: 5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.4rem;
    color: #fff;
    background: #704112;
    width: max-content;
    margin: 0 auto;
}
main #allFrm .goalWrap button img {
    width: 1rem;
}
main #allFrm > button {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    padding: 2rem 0;
    border-radius: 1rem;
    background: #704112;
    width: calc(100% - 3rem);
    position: absolute;
    bottom: 4rem;
    left: 50%;
    transform: translateX(-50%);
}
main #goalFrm {
    display: flex;
    flex-flow: column nowrap;
}
main #goalFrm label {
    display: flex;
    gap: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
    padding: 1rem 0;
    border-bottom: 1px solid #d7d3d2;
}
main #goalFrm label:last-child {
    border: none;
}
main #goalFrm label input {
    width: 2rem;
    height: 2rem;
    background-image: url(../img/check-2.png);
    background-repeat: no-repeat;
    background-size: cover;
}
main #goalFrm label input:checked {
    background-image: url(../img/check-1.png);
}
main .allList {
    display: flex;
    flex-flow: column nowrap;
    gap: 1.5rem;
}
main .allList a {
    border-radius: 1rem;
    border: 1px solid #a8a39f;
    padding: 2rem 1.5rem;
    position: relative;
}
main .allList a h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #704112;
    margin-bottom: 1.5rem;
}
main .allList a p {
    font-size: 1.4rem;
}
main .allList a button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.4rem;
    position: absolute;
    top: 2rem;
    color: #a8a39f;
    right: 1.5rem;
}
main .allList a button img {
    width: 1rem;
}
main .noList {
    padding-top: 10rem;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
}
main .noList h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
main .noList p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
}
main .noList a {
    padding: 0.5rem 1.5rem;
    border-radius: 5rem;
    background: #704112;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    font-size: 1.4rem;
    width: max-content;
}
main .noList a img {
    width: 1rem;
}