.container {
    max-width: 1200px !important;
}

/* °Ë»öÅÇ */
.sch-tab { margin:0 auto;max-width:1200px;border-bottom:solid 1px #ebebeb; }
.sch-tab ul { display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex; }
.sch-tab ul { height:60px; }
.sch-tab ul li.tab-item { flex:1;position:relative; }
.sch-tab ul li.tab-item a { display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex; }
.sch-tab ul li.tab-item a { flex-direction: column;flex-wrap: nowrap;justify-content: center;align-items: center; }
.sch-tab ul li.tab-item a { position:relative;height:60px; }
.sch-tab ul li.tab-item a .txt { line-height:22px;font-size:15px;color:#333;font-weight:700; }
.sch-tab ul li.tab-item a .num { margin-top:1px;line-height:20px;font-size:13px;color:#999;font-weight:400; }
.sch-tab ul li.tab-item.tab-active .txt { color:#0080FF; }
.sch-tab ul li.tab-item.tab-active .num { color:#0080FF; }
.sch-tab ul li.tab-item.tab-active:after { content:'';position:absolute;left:0;right:0;bottom:-1px;border-bottom:solid 2px #0080FF; }

@media (max-width: 480px) {
.sch-tab { border-bottom:solid 10px #eee; }
}

#article-list {
    min-height: 70vh;
    padding-bottom: 40px;
    padding-top: 32px;
	
	& .total-result {
		padding:0;
		font-size: 24px;
		font-weight: 700;
		line-height: 30px;
		margin-bottom: 30px;

		& span {
			font-size: 24px;
			font-weight: 700;
			line-height: 30px;
		}

		& span.num {
			font-size: 15px;
			font-weight: 400;
			line-height: 30px;
			color:#999;
		}
		
		& .lnk-more {
			display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;
			flex-direction: row;
            flex-wrap: nowrap;
            align-items: center;
			
			& img {
				margin-left:.5rem;
			}
		}

		@media(max-width: 480px) {
			margin-bottom:10px;
			font-size:20px;
			line-height: 30px;
		}
	}

    & .article-item {
        border-radius: 4px;
        cursor: pointer;
        transition: all 0.3s ease;

        &:hover {
            transform: scale(1.02);
        }

        & .thumbnail {
            width: 100%;
            border-radius: 4px;

            & img {
                width: 100%;
                aspect-ratio: 270/186;
                border-radius: 15px;
                background-color: rgba(0, 0, 0, 0.05);
                object-fit: cover;
            }
        }
		
		& .sup {
			margin-top: 20px;
			height:20px;
			overflow:hidden;
			white-space:nowrap;
			text-overflow: ellipsis;
			font-size: 13px;
			line-height: 20px;
			color:#333;
		}
		
		& .sup + .title {
			margin-top: 10px;
		}

        & .title {
            margin-top: 20px;
            font-size: 17px;
            line-height: 24px;
            font-weight: 700;
            color: #212529;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            min-height: 24px;

            @media(max-width: 480px) {
                font-size: 16px;
                line-height: 24px;
            }
        }

        & .description {
            margin-top: 10px;
            font-size: 15px;
            font-weight: 400;
            line-height: 22px;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            color: #838383;

            @media(max-width: 480px) {
                font-size: 12px;
                line-height: 20px;
            }
        }

        & .author, .date{
            margin-top: 12px;
            font-size: 13px;
            font-weight: 400;
            line-height: 22px;
            text-align: left;
            color: #838383;

            @media(max-width: 480px) {
                font-size: 12px;
            }
        }

    }
	
	@media (max-width: 640px) {
		.grid-cols-2{
			grid-template-columns:repeat(1,minmax(0,1fr))
		}
	}
}

#article-header {
    background-color: #EBF5FF;

    & #article-title {
        padding: 24px 0;

        &.header-no-topic {
            padding-bottom: 0;
        }

        & h1 {
            font-size: 30px;
            line-height: 38px;

            @media(max-width: 480px) {
                font-size: 20px;
                font-weight: 600;
                line-height: 30px;
            }
        }

        @media (max-width: 786px) {
            padding: 24px 32px;
        }
    }

    & h1 {
        font-size: 40px;
        font-weight: 700;
        line-height: 48px;
    }

    & .follow-btn {
        padding: 8px 20px;
        border-radius: 40px;
        border: 1px solid #E9ECEF;

        & span {
            font-size: 12px;
            font-weight: 500;
            line-height: 18px;
        }
    }

    & .dot-horizontal-dropdown {
        & img {
            width: 100%;
            height: 100%;
            cursor: pointer;
        }
    }

    & .topics-box {
        width: 240px;

        @media (max-width: 1536px) {
            right: 0;
        }

        & .topic-box-item {
            display: flex;
            gap: 10px;
            padding: 12px;
            justify-content: space-between;

            &.active {
                color: #6EA8FE;
            }
        }
    }
}

.tag-item,
.more-tags {
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    border: 1px solid #CED4DA;
    border-radius: 8px;
    padding: 2px 8px;
    height: fit-content;

    @media (max-width: 480px) {
        font-size: 10px;
    }
}

.item-infomation-tags-mobile {
    display: none;

    @media (max-width: 480px) {
        display: flex;
        margin-top: 8px;
        margin-bottom: 8px;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px 12px;
    }
}

.item-infomation-tags {
    margin-top: 8px;
    margin-bottom: 8px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;

    @media (max-width: 480px) {
        display: none;
    }
}

.article-ads-container {
    width: 202px;

    @media(max-width: 614px) {
        width: 100%;
    }

    @media(max-width: 480px) {
        & .thumbnail {
            width: 100%;
        }
    }
}

.article-ads {
    min-width: 235px;
    max-width: 235px;

    & img {
        height: 139px;
        width: 100%;
        border-radius: 8px;
        margin-bottom: 12px;
        object-fit: contain;
        background-color: rgba(0, 0, 0, 0.05);

        @media (max-width: 480px) {
            height: 114px;
        }
    }

    & .information {
        display: flex;
        flex-direction: column;
        flex: 1;

        & .title {
            font-size: 16px;
            font-weight: 400;
            line-height: 24px;
            color: #6B7280;
            margin-bottom: 6px;
        }

        & .description {
            font-size: 12px;
            font-weight: 500;
            line-height: 18px;
            text-align: left;
            text-transform: uppercase;
            color: #9CA3AF;
        }
    }

    @media(max-width: 614px) {
        min-width: 100%;
        max-width: 100%;

        & a {
            flex-direction: row;
        }

        & img {
            width: 100%;
            margin-bottom: 0;
        }

        & .information {
            flex: 0;

            & .title {
                display: none;
                margin-bottom: 0;
            }

            & .description {
                display: none;
                margin-top: auto;
            }
        }
    }
}

.topic-desktop {
    min-width: 235px;
    max-width: 235px;
    border: 1px solid #E5E7EB;
    border-radius: 8px;

    @media(max-width: 1024px) {
        min-width: 306px;
        max-width: 306px;
    }

    @media(max-width: 614px) {
        min-width: 100%;
        max-width: 100%;
    }
}

  .btn-collapse {
    background: none;
    border: none;
    text-decoration: none;
    cursor: default;
    font-size: 16px;
    display: block;
    width: 100%;
    text-align: left;
    padding: 10px;

    @media(max-width:480px){
        cursor: pointer;
    }
  }
  
  .custom-collapse {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.5s ease-out;
  }
  
  .custom-collapse.show {
    max-height: 100vh;
  }

  .icon-collapse{
    display: none;

    @media(max-width: 480px){
        display: flex;
    }
  }

#topic-section {
    display: flex;
    flex-direction: column;
    height: fit-content;

    & .topic-item {
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        padding: 8px 16px;
        width: 100%;

        & span {
            font-size: 14px;
            font-weight: 500;
            line-height: 21px;
            text-wrap: nowrap;
            text-overflow: ellipsis;
            overflow: hidden;
        }
    }

    & .topic-item.active {
        background-color: #E7F1FF;
    }
}

#article-recommendation-section {
    display: flex;
    flex-direction: column;
    gap: 12px;

    & .category-item {
        display: flex;
        justify-content: space-between;
        gap: 24px;
        padding-bottom: 10px;
        border-bottom: 1px solid #DEE2E6;

        & img {
            border-radius: 4px;
            object-fit: cover;
            width: 110px;
            min-width: 110px;
            height: 75px;
            min-height: 75px;
        }

        & .item-information {
            & .item-information-title {
                font-size: 17px;
                line-height: 24px;
                color: #111928;
                display: -webkit-box;
                -webkit-box-orient: vertical;
                -webkit-line-clamp: 2;
                overflow: hidden;
                text-overflow: ellipsis;
                margin-bottom: 9px;
            }

            /* & .item-infomation-tags {
                display: flex;
                flex-wrap: wrap;
                gap: 12px;

                & .tag-item {
                    border: 1px solid #EFEFEF;
                    padding: 4px 12px;
                    border-radius: 10px;
                    transition: all 0.1s ease-in;

                    &:hover {
                        background-color: rgba(0, 0, 0, 0.2);
                    }
                }
            } */

            & .item-information-author {
                width: 100%;
                font-size: 12px;
                font-weight: 500;
                line-height: 20px;
                color: #6B7280;
            }
        }
    }

    & .swiper-buttons {
        position: absolute;
        width: 100%;
        top: 50%;

        & .swiper-button-next-article {
            padding: 22px;
            border-radius: 50%;
            background-color: #DEE2E6;
            right: -3%;
            color: #111928;
        }

        & .swiper-button-prev-article {
            padding: 22px;
            border-radius: 50%;
            background-color: #DEE2E6;
            left: -3%;
            color: #111928;
        }
    }
}

#articlepage-articleList {
    & .article-spinner-loading {
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: center;
    }

    & .no-article-wrapper {
        display: flex;
        width: 100%;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-top: 50px;

        & img {
            object-fit: cover;
        }

        & p {
            font-size: 30px;
            font-weight: 500;
            line-height: 48.12px;
        }
    }
}

#article-detail {
    & .detail-content {
        margin-bottom: -60px;

        @media (max-width: 480px) {
            margin-bottom: -50px;
        }
    }

    #article-detail-tags-section {
        & #article-detail-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 12px;
        }

        & .article-detail-tag-item {
            padding: 4px 12px;
            border-radius: 16px;
            border: 1px solid #CED4DA;
            color: #212529;
            font-size: 16px;

            &:hover {
                cursor: pointer;
                background-color: #E7F1FF;
                border-color: #E7F1FF;
            }
        }
    }


    & .article-recommendation-wrapper {
        background-color: #fff;
        border-radius: 16px;

        & .swiper-buttons {
            position: absolute;
            width: 100%;
            top: 50%;

            & .swiper-button-next-1 {
                padding: 25px;
                border-radius: 50%;
                background-color: #A4A4A4C2;
                right: -6%;
                color: #111928;
            }

            & .swiper-button-prev-1 {
                padding: 25px;
                border-radius: 50%;
                background-color: #A4A4A4C2;
                left: -9%;
                color: #111928;
            }
        }
    }

    & .author-recommendation-wrapper {
        margin-bottom: 60px;

        @media (max-width: 480px) {
            margin-bottom: 0;
        }
    }

    & .swiper-buttons {
        position: absolute;
        width: 100%;
        top: 50%;

        & .swiper-button-prev::after,
        & .swiper-button-next::after {
            font-size: 18px;
            color: #111928 !important;
            font-weight: 700;
        }
    }

    & #article-banner {
        width: 100%;
        height: auto;
        border-radius: 15px;
        margin-bottom: 30px;
    }

    & #article-title {
        font-size: 30px;
        line-height: 45px;
        font-weight: 800;
        color: #333333;
        font-family: "Pretendard", sans-serif;
        margin-bottom: 20px;
    }

    & #article-short-description {
        color: #666666;
        font-size: 15px;
        line-height: 22px;
        margin-bottom: 15px;
        font-family: "Pretendard", sans-serif;
    }

    & #article-long-description,
    #oldArticle-long-description {
        box-sizing: border-box;
        max-width: 100%;

        & h2,
        h1,
        h3,
        h4,
        h5 {
            & img {
                margin: 0px auto !important;
            }
        }

        & .fr-view {
            & img {
                margin: 0px auto !important;
            }
        }

        & .fr-embedly {
            height: auto !important;
        }

        & iframe {
            aspect-ratio: 16 / 9;
            height: auto;
            width: 100%;
        }

        & .fr-draggable {
            display: block;
            margin-left: auto;
            margin-right: auto
        }

        & .fr-fil {
            display: block;
            margin-left: 0;
            margin-right: 0;
        }

        & .fr-fir {
            display: block;
            margin-left: auto;
            margin-right: 0;
        }

        & table {
            margin: 0 auto;
            width: auto !important;
            max-width: 100% !important;

            &.isRight {
                margin-left: 15px !important;
            }

            &.isLeft {
                margin-right: 15px !important;
            }
        }

        & td {
            padding: 0;
            border: 0;

            & p {
                min-height: 22px;
                font-size: 16px;
                line-height: 22px;
                font-weight: 400;
                margin-top: 1em;
                margin-bottom: 1em;
            }
        }

        & p {
            line-height: 30px;
        }

        & span {
            max-width: 100%;
        }

        & a {
            max-width: 100%;
            color: #1C64F2;
            text-decoration: none;
        }

        & h2 {
            width: auto !important;
            word-break: unset !important;

            & span {
                word-break: unset !important;
            }
        }
    }

    & #oldArticle-long-description {
        & table {
            & img {
                margin: 0px auto !important;
            }

            &.isRight {
                margin-left: 15px !important;
            }

            &.isLeft {
                margin-right: 15px !important;
            }
        }

        & .otherNewsArea {
            & .clearfix {
                & a {
                    display: flex;
                    gap: 10px;
                    margin: 10px 0;

                    & .otherNews_img {
                        width: 30%;
                    }
                }
            }
        }
    }

    & #article-detail-actions {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 0;
        border-top: 1px solid #E5E7EB;
        border-bottom: 1px solid #E5E7EB;
        margin-top: 30px;

        @media (max-width: 480px) {
            padding: 24px 0px;
            margin: 24px 0 40px;
            display: none;
        }

        & .btn-like {
            display: flex;
            align-items: center;
            padding: 8px 25px 8px 25px;
            border-radius: 40px;
            border: 1px solid #1C64F2;
            cursor: pointer;
            color: #1C64F2;
            gap: 8px;

            @media (max-width: 480px) {
                padding: 9px 30px;

                & .btn-like-text {
                    display: none;
                }
            }
        }

        & .social-list {
            position: relative;

            & .btn-social {
                display: flex;
                align-items: center;
                padding: 12px 20px;
                gap: 8px;
                cursor: pointer;
                white-space: nowrap;
                position: absolute;
                bottom: -5px;
                visibility: hidden;
                opacity: 0;
                transition: all 0.2s ease-in;
                right: -15px;
            }

            & .btn-facebook {

                &.isShow {
                    visibility: visible;
                    opacity: 1;
                    right: 155px;
                }
            }

            & .btn-twitter {
                &.isShow {
                    visibility: visible;
                    opacity: 1;
                    right: 95px;
                }
            }

            & .btn-copy {
                &.isShow {
                    visibility: visible;
                    opacity: 1;
                    right: 35px;
                }
            }
        }
    }

    & .article-label {
        font-family: inherit;
        font-size: 20px;
        font-weight: 600;
        line-height: 24px;
        color: #333333;
        margin-bottom: 12px;
    }

    & #article-writer {
        border: 1px solid #EBEBEB;
        border-radius: 15px;
        padding: 20px;

        @media (max-width: 480px) {
            background-color: #F8F8F8;
        }

        & #article-writer-avatar {
            width: 74px;
            min-width: 74px;
            height: 74px;
            min-height: 74px;
            object-fit: cover;
            border: 1px solid #E5E7EB;
            line-height: 151px;
        }

        & .follow-button {
            padding: 3px 6px !important;

            & .follow-button--name {
                font-size: 12px;
                line-height: 14px;
                margin-left: 4px;
            }
        }

        & #article-writer-name {
            font-weight: bold;
            font-size: 17px;
            line-height: 24px;
            color: #333333;
        }

        & #article-writer-des {
            font-size: 15px;
            line-height: 22px;
            color: #999999;
            text-align: justify;
        }
    }

    #text-selection-actions {
        border: 1px solid #E5E7EB;
        background-color: white;
        padding: 16px;
        border-radius: 4px;

        & .text-selection-action {
            display: flex;
            flex-flow: column;
            align-items: center;
            gap: 4px;

            &:hover {
                cursor: pointer;
            }
        }

        & .share-icon {
            height: 20px;
            width: 20px;

            & img {
                height: 100%;
            }
        }
    }

    & .browse-container {
        padding: 16px;
        background-color: #EBF5FF;
        border-radius: 8px;

        & .label {
            color: #111928;
            font-size: 14px;
            font-weight: 600;
            line-height: 21px;
            margin-bottom: 16px;
        }

        & .divider {
            margin: 16px 0px;
            height: 1px;
            background-color: #6B7280;
            width: 100%;
        }

        & .browse-list {
            width: fit-content;

            & .arrow-hover {
                margin-left: 10px;
                height: 12px;
            }
        }
    }

    & .ads-container {
        width: 100%;

        & .title {
            color: #6B7280;
            font-size: 16px;
            font-weight: 400;
        }

        & .ads-thumbnail {
            width: 100%;
            height: 120px;

            & img {
                width: 100%;
                height: 100%;
                border-radius: 8px;
                object-fit: contain;
                background-color: rgba(0, 0, 0, 0.05);


                @media (max-width: 480px) {
                    border-radius: 0px;
                }
            }

            @media (max-width: 1200px) {
                aspect-ratio: 720/120;
            }

            @media (max-width: 480px) {
                height: 62px;
            }
        }
    }
}

#article-detail-content {
    margin-top: 30px;
    margin-bottom: 60px;
}


.article-detail-header-wrapper {
    & .author {
        color: #999999;
        font-size: 13px;
        line-height: 22px;

        & span {
            color: #333333;
            font-weight: bold;
        }
    }

    & .dot {
        width: 3px;
        height: 3px;
        background-color: #D8D8D8;
        border-radius: 9999px;
        margin: 0 6px 0 5px;
    }

    & .publishDate {
        color: #999999;
        font-size: 13px;
        line-height: 22px;
    }

    & .btn-zoom {
        display: flex;
        align-items: center;
        gap: 5px;
        border: 1px solid #EBEBEB;
        border-radius: 8px;
        padding: 6px 10px;

        & .text-zoom {
            color: #333333;
            font-size: 13px;
            line-height: 19px;
        }
    }
}

@media (max-width: 1200px) {

    & .swiper-button-next,
    & .swiper-button-prev {
        display: none;
    }

    #article-detail {

        & #article-title {
            font-size: 30px;
            font-weight: 800;
            line-height: 37.5px;

        }

        & #article-detail-content {
            background-color: transparent;
            border-radius: 0;
        }

        & .product-recommendation-wrapper {
            border-radius: 0;
        }

        & .article-recommendation-wrapper {
            border-radius: 0;
        }

        & .article-writer-wrapper {
            border-radius: 0;
        }

        & .author-recommendation-wrapper {
            border-radius: 0;
        }

        & #article-detail-comments {
            border-radius: 0;
            background-color: transparent;
        }

        & .article-detail-comments-wrapper {
            width: 100%;
        }

        & #article-detail-actions {
            padding: 12px 0;
        }

        & .ads-container {
            padding: 0;
        }
    }
}

.comment-form {
    display: flex;
    align-items: end;
    border: 1px solid #D8D8D8;
    padding: 10px;
    border-radius: 3px;
    overflow: hidden;
    position: relative;

    & .comment-preview-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 2;
    }

    & .comment-box {
        font-size: 14px;
        font-weight: 400;
        width: 100%;
        box-sizing: border-box;
        overflow: hidden;
        outline: none;
        border: none;
        --tw-ring-color: inherit;
        box-shadow: none;
        padding: 0;
        resize: none;

        &::placeholder {
            color: #999999;
        }

        &:focus {
            border: none;
        }

        &[contentEditable=true]:empty:before {
            content: attr(placeholder);
            opacity: 0.6;
        }

        @media (max-width:1200px) {
            background-color: #fff;
        }
    }

    & .comment-submit {
        padding: 4px 10px;
        border: 1px solid #D8D8D8;
        color: #333333;
        border-radius: 6px;
        font-size: 13px;
        font-weight: 500;
        white-space: nowrap;

        &:disabled {
            background-color: #999999;
            color: white;
        }
    }
}

@media (max-width: 1024px) {
    #article-list {
        padding: 30px 20px 64px;
    }
}

@media (max-width: 768px) {
    #article-detail {

        & #article-detail-content,
        & #article-detail-comments,
        & .author-recommendation-wrapper {
            padding: 0 17.5px;
        }
    }
}

@media (max-width: 480px) {
    #article-list {
        padding:15px 20px 0px;
    }

    #topic-section {
        margin-bottom: 14px;
    }

    #article-detail {

        & #article-title {
            font-size: 24px;
            font-weight: 700;
            line-height: 30px;
        }

        & #article-detail-content {
            margin-top: 0px;
            padding: 17.5px;
            margin-bottom: 0px;
        }

        & .article-writer-wrapper {
            border-radius: 0;
        }

        & .article-label {
            font-family: inherit;
            font-size: 20px;
            font-weight: 700;
            line-height: 30px;
            color: #111928;
        }

        & .article-detail-header-action {
            display: none;
        }
    }

    .swiper-buttons {
        display: none;
    }

    #article-recommendation-section {
        & .category-item {
            padding: 8px;
            border-radius: 4px;

            & .item-information {
                padding: 4px 0px;

                & .item-information-title {
                    font-size: 16px;
                    font-weight: 500;
                    line-height: 24px;
                    min-height: 48px;
                }

                /* & .item-infomation-tags{
                    display: none;
                    gap: 6px;

                    & .tag-item {
                        font-size: 10px;
                    }
                } */
            }
        }
    }

    & .btn-zoom {
        display: none;
    }
}


.dropdown-wrapper {
    position: relative;

    & .icon-dropdown {
        position: absolute;
        top: 50%;
        right: 10px;
        transform: translateY(-50%);
        pointer-events: none;
    }
}

.article-recommend-swipper {
    & .category-item {
        overflow: hidden;
        border-radius: 15px;
        background-color: #F8F8F8;
        box-shadow: 0 3px 6px 0px rgba(0, 0, 0, 0.16);
    }

    & .thumbnail {
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: rgba(0, 0, 0, 0.05);
        min-height: 150px;

        & img {
            max-height: 150px;
            margin: 0 auto;
        }
    }

    & .item-information {
        padding: 18px;

        & .item-information-title {
            min-height: 44px;
            line-height: 22px;
            word-break: break-all;
            color: #333;
            font-size: 18px;
            font-weight: normal;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 2;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        & .item-information-author {
            font-size: 13px;
            line-height: 17px;
            word-break: break-all;
            color: #999;
        }
    }
}

.custom-select {
    appearance: none;
    /* For most modern browsers */
    -webkit-appearance: none;
    /* For Safari */
    -moz-appearance: none;
    /* For Firefox */
    background: none;
    padding: 10px 30px 10px 10px;
    /* Adjust padding to fit the arrow */
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding-right: 30px !important;
}

/* Wrapper to position the arrow */
.custom-select-wrapper {
    position: relative;
    display: inline-block;
}

/* Style the custom arrow */
.custom-arrow {
    position: absolute;
    top: 50%;
    right: 12px;
    /* Adjust to fit your design */
    pointer-events: none;
    /* Prevent click events on the arrow */
    transform: translateY(-50%);
    font-size: 16px;
    /* Adjust size if necessary */
    color: #333;
    /* Arrow color */
}

#article-items.category-2222.topic-2001 .description:empty {
    display: none;
}

#article-mobile-actions {
    display: none;

    @media (max-width: 480px) {
        display: flex;
    }
}
#dropdownButtonFilter, #dropdownButtonFilterTag{
    padding: 4px 12px;
    border: #97989C 1px solid;
    border-radius: 8px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    & span{
        color: #2A2B34;
        font-size: 14px;
    }
}
#dropdownMenuFilter{
    z-index: 2;
    & li{
        font-size: 14px;
    }
}

/*
°Ë»ö¾î ±æ°æ¿ì ±úÁü ¹æÁö
.bread-crumb-container.search-header-container{
    max-height: 118px;
}
*/

/* Áö³­ ½Ã¸®Áî */
.tab-rail { box-sizing:border-box;margin:0 auto;padding:15px 0;max-width:1200px;overflow-x:auto;overflow-y:hidden;line-height:0;font-size:0;white-space:nowrap;-webkit-overflow-scrolling:touch;background-color:#fff; }
.tab-rail::-webkit-scrollbar { display:none; }
.tab-rail .tab { display:table;table-layout:fixed; }
.tab-rail .tab .tab-item { display:table-cell;padding:0; }
.tab-rail .tab .tab-item .lnk-tab { display:block;margin:0 5px 0 0;position:relative;box-sizing:border-box;padding:0 15px;line-height:38px;font-size:15px;color:#999;vertical-align:top;border:solid 1px #ebebeb;border-radius: 20px;background-color:#f8f8f8; }
.tab-fixWrap { line-height:28px; }
.tab-fixWrap.small { height:60px; }
.tab-fixWrap.small .tab .tab-item .lnk-tab { line-height:28px; }
.tab-fixWrap.fixed { position:static; }
.tab-fixWrap.fixed .tab-rail { position:fixed;left:0;top:0;right:0;border-bottom:solid 1px #d8d8d8; }
@media (max-width: 480px) {
    .tab-fixWrap {
		height:50px;
		border-bottom:solid 10px #eee;
		background-color:#fff;
    }
    .tab-rail {
		padding-top:10px;
		padding-bottom:10px;
		& .tab { padding-left:20px;padding-right:15px; }
    }
	.tab-rail .tab .tab-item .lnk-tab.accountActive { padding:0 14px;color:#333;border-color:#333;background-color:#fff; }
	.tab-fixWrap.fixed .tab-rail { top:70px; }
}
#article-list .series-past .total-result { margin-bottom:15px; }
#article-list .series-past .grid { padding-bottom:40px;gap:0 1.5rem; }
#article-list .series-past .grid .series-txt { box-sizing:border-box;display:block;padding:7px 0;height:40px;overflow:hidden; }
#article-list .series-past .grid .series-txt a.lnk-series { display:block;height:24px;overflow:hidden;line-height:24px;font-size:17px;color:#666;font-weight:400;white-space:nowrap;text-overflow:ellipsis; }

@media (max-width: 480px) {
	#article-list .series-past .total-result { margin-bottom:10px; }
}