.htcta-author {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: center;
    padding: 48px;
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    border-radius: 20px;
    margin: 40px 0;
}

.htcta-author__content {
    max-width: 560px;
}

.htcta-author__label {
    font-family: 'Sen', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #2563eb;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.htcta-author__bio {
    font-family: 'Sen', sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin: 0 0 20px 0;
}

.htcta-author__signature {
    display: block;
    font-family: 'Caveat', cursive;
    font-size: 32px;
    color: #ffffff;
    margin-bottom: 28px;
}

.htcta-author__button {
    display: inline-block;
    padding: 14px 28px;
    font-family: 'Sen', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    background: #ef4444;
    border: none;
    border-radius: 10px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease;
}

.htcta-author__button:hover {
    background: #dc2626;
    color: #ffffff;
}

.htcta-author__profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.htcta-author__image {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #2563eb;
    margin-bottom: 16px;
}

.htcta-author__image--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.4);
}

.htcta-author__info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.htcta-author__name {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Sora', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
}

.htcta-author__linkedin {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s ease;
}

.htcta-author__linkedin:hover {
    color: #0a66c2;
}

.htcta-author__role {
    font-family: 'Sen', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
    .htcta-author {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 32px 24px;
        text-align: center;
    }

    .htcta-author__content {
        order: 2;
    }

    .htcta-author__profile {
        order: 1;
    }

    .htcta-author__bio {
        font-size: 16px;
    }

    .htcta-author__image {
        width: 120px;
        height: 120px;
    }
}
