:root {
    --border-color: #ddd;
}

.its-button {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    padding: 7rem 0 3rem;
}

.intenship-section h2 {
    color: #161616;
    font-size: 2rem;
    padding: 0 0 2rem;
}

.intenship-section>article {
    background: #fafaf9;
    border: 5px solid #ffffff;
    border-radius: 15px;
    box-shadow: 0 0 3px #cad8c9;
    padding: 4rem;
}

.its-info {
    margin-bottom: 50px;
}

.its-info>div {
    display: flex
}

.its-info>div>ul {
    flex: 1;
    display: grid;
    gap: 3rem;
}

.its-info>div>ul>li {
    display: flex;
    gap: 1.5rem;
}

.its-info>div>ul>li>div {
    color: #138a41ff;
    width: 5rem;
    height: 5rem;
    background: #ffffff;
    border-radius: 50%;
    padding: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    box-shadow: 0 0 3px #cad8c9;
}

.its-info .lucide {
    width: 2.8rem;
    height: 2.8rem
}



.its-info>div>ul>li>dl>dt {
    margin: 1.2rem 0 .5rem;
    font-weight: 700;
    font-size: 1.6rem;

}

.its-desc {
    display: flex;
    font-size: 1.3rem;
    color: #787878;
    line-height: 1.1em;
    margin-bottom: .5rem;
}

.its-desc::before {
    content: '※';
    display: block;
}

.its-info>div>ul>li>dl>dd {
    color: #333;
    font-weight: 500;
    line-height: 1.6em;
}

.its-info>div>ul>li>dl>dd>ul {
    display: grid;
    gap: .5rem
}

.its-info>div>ul>li>dl>dd>ul>li {
    display: flex;
    gap: .5rem
}

.its-info>div>ul>li>dl>dd>ul>li::before {
    content: '';
    display: block;
    width: .3rem;
    height: .3rem;
    border-radius: 50%;
    background: #333;
    margin-top: .9rem;
}



.its-company>ul {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 3rem
}

.its-company>ul>li {
    text-align: center;
    padding: 3rem 1.5rem;
    /* border: 1px solid #cad8c9; */
    background: #ffffff;
    border-radius: 1.5rem;
    box-shadow: 0 0 3px #cad8c9;
    transition: all 0.3s ease;
}

.its-company>ul>li>a>img {
    width: 80%;
    object-fit: contain;
    object-position: center center;
    aspect-ratio: 3/2
}

.its-company>ul>li>a>dl {
    border-top: 1px solid #eee;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    letter-spacing: -0.05em;
}

.its-company>ul>li>a>dl>dt {
    color: #161616;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: .5rem
}

.its-company>ul>li>a>dl>dd {
    color: #333;
    font-weight: 500;
    line-height: 1.6em;
}

.its-company>ul>li:hover {
    transform: translateY(-5px);
    box-shadow: 0 3px 10px #cad8c9;
}


/* ****************************************** */


.intern-popup {
    position: relative;

}


/* Header */
.intern-header {
    padding: 6rem 4rem 4rem;
    background: #f9fafb;
    position: relative;
}

.intern-header-content {
    position: relative;
    z-index: 2;
}


.intern-header-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.2em;
    color: #333;

}

.intern-header-title .intern-highlight {
    color: var(--green-color);
}

.intern-header-subtitle {
    margin: 2rem 0 0;
    display: block;
    font-size: 1.4rem;
    color: #666;
    font-weight: 500
}

.intern-header-deco {
    position: absolute;
    right: 6rem;
    top: 0;
    width: 0;
    height: 115%;
}

.intern-header-deco img {
    height: 100%;
    object-fit: cover;
    transform: translateX(-100%);
}


/* Body */
.intern-body {
    padding: 1rem 4rem;
    display: flex;
    flex-direction: column;

}

.intern-row {
    display: flex;
    gap: 2rem;
    padding: 2rem 0;
    border-bottom: 1px dashed #eee;
}

.intern-label {
    width: 15rem;
    padding: 1rem 0;
    font-size: 1.6rem;
    font-weight: 700;
    color: #333;
    line-height: 1.4;
}

.intern-label .intern-required {
    color: var(--green-color);
}

.intern-field {
    flex: 1;
}

/* Custom Inputs */
.intern-input,
.intern-select,
.intern-textarea {
    width: 100%;
    border: 1px solid var(--border-color);
    border-radius: 3px;
    padding: 1rem;
    font-size: 1.4rem;
    outline: none;
    transition: border-color 0.2s;
    background: #fff;
}

.intern-input::placeholder,
.intern-select::placeholder,
.intern-textarea::placeholder {
    color: #bbb;
}

.intern-input:focus,
.intern-select:focus,
.intern-textarea:focus {
    border-color: var(--green-color);
    font-weight: 400;
}

.mt-10 {
    margin-top: 10px;
}

/* Company Grid */
.intern-company-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.intern-company-item {
    position: relative;
}

.intern-company-item input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.intern-company-box {
    display: block;
    border: 1px solid var(--border-color);
    cursor: pointer;

    text-align: center;
    padding: 1.5rem;
    border-radius: 5px;
    transition: border 0.3s ease;
}

.intern-company-logo {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.intern-company-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.intern-company-name {
    width: 100%;
    border-top: 1px solid #eee;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    color: #333;
    font-size: 1.4rem;
    font-weight: 600;
    display: block;

}

.intern-company-radio-circle {
    width: 18px;
    height: 18px;
    border: 2px solid #ddd;
    border-radius: 50%;
    position: relative;
}

.intern-company-item input[type="radio"]:checked+.intern-company-box {
    border-color: var(--green-color);
    background: rgba(11, 113, 53, 0.02);
}

.intern-company-item input[type="radio"]:checked+.intern-company-box .intern-company-radio-circle {
    border-color: var(--green-color);
}

.intern-company-item input[type="radio"]:checked+.intern-company-box .intern-company-radio-circle::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--green-color);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.intern-empty-msg {
    border-radius: 3px;
    grid-column: span 5;
    text-align: center;
    padding: 3rem 0;
    color: #999;
    font-size: 1.4rem;
    border: 1px dashed var(--border-color);
}

/* Radio Group (Gender) */
.intern-radio-group {
    display: flex;
    gap: 1rem;
}

.intern-radio-box {
    flex: 1;
    position: relative;
}

.intern-radio-box input {
    position: absolute;
    opacity: 0;
}


.intern-radio-box label {
    display: block;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    transition: border 0.2s;
}

.intern-radio-box input:checked+label {
    border-color: var(--green-color);
    color: var(--green-color);
    background: rgba(11, 113, 53, 0.02);
}

.intern-radio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

@media screen and (max-width: 600px) {
    .intern-radio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}





/* Privacy */
.intern-terms-container {
    background: #f9fafb;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
}

.intern-terms-content {
    font-size: 1.3rem;
    color: #666;
    line-height: 1.6;
    height: 100px;
    overflow-y: auto;
}

.intern-privacy-radios {
    display: flex;
    gap: 20px;
}

.intern-custom-radio {
    display: flex;
    align-items: center;
    gap: 8px;
}

.intern-custom-radio input {
    margin: 0;
    width: 18px;
    height: 18px;
}

.intern-custom-radio label {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
}

/* Footer */
.intern-footer {
    padding: 2rem 4rem 3rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.intern-footer .bttn {
    max-width: 20rem;
    flex: 1;
}



/* Scrollbar styling for textarea and terms */
.intern-textarea::-webkit-scrollbar,
.intern-terms-content::-webkit-scrollbar {
    width: 6px;
}

.intern-textarea::-webkit-scrollbar-thumb,
.intern-terms-content::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 3px;
}


.intern-dynamic-row {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: nowrap;
}

.intern-btn-add,
.intern-btn-del {
    width: 4rem;
    height: 4rem;
    border: none;
    border-radius: 3px;
    background: var(--green-color);
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.intern-btn-add {
    background: var(--green-color);
}

.intern-btn-del {
    background: #ff4b4b;
}

.intern-dynamic-row input {}

.intern-dynamic-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}



@media screen and (max-width: 768px) {}