* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: white;
    color: black;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: black;
    text-decoration: underline;
    transition: color 0.2s ease;
    cursor: crosshair;
}

a:hover {
    color: #1717FB;
}

.container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    padding: 4vw;
    max-width: 1500px;
    margin: 0 auto;
}

.left-column,
.right-column {
    position: relative;
}

.sticky-content {
    position: sticky;
    top: 4vw;
}

/* Left Column */
.name {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 8px;
}

h1.name {
    font-size: 14px;
    font-weight: 400;
}

.title {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 8px;
}

h2.title {
    font-size: 14px;
    font-weight: 400;
}

.stars {
    font-size: 14px;
    font-weight: 400;
    color: #1717FB;
    margin-bottom: 24px;
}

/* Right Column */
.about {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 16px;
}

.space {
    margin-bottom: 16px;
}

.link {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 4px;
}

/* Mobile */
@media (max-width: 768px) {
    .container {
        grid-template-columns: 1fr;
        padding: 6vw;
        gap: 60px;
    }

    .sticky-content {
        top: 6vw;
    }

    .left-column .sticky-content {
        position: static;
    }

    .right-column .sticky-content {
        position: sticky;
        bottom: 6vw;
        top: auto;
    }
}
