.ct-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.ct-items {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ct-item {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: 1.1rem 0;
    border-bottom: 1px solid #ebebeb;
}

.ct-item:first-child {
    border-top: 1px solid #ebebeb;
}

.ct-key {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #999;
    text-transform: uppercase;
}

.ct-val {
    font-size: 0.95rem;
    color: var(--color-text);
    line-height: 1.6;
}

.ct-link {
    text-decoration: none;
    color: var(--color-text);
}

.ct-link:hover {
    color: #3a5f9a;
}

.ct-right {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    height: 100%;
    min-height: 320px;
}

.ct-right iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 320px;
}

@media (max-width: 680px) {
    .ct-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}