.author-profile-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 40px;
    background-color: #fcfcfc;
    color: #333;
    margin: 20px auto;
}

.author-profile-container .profile-main {
    flex: 1;
    min-width: 300px;
}

.author-profile-container .sub-header {
    color: #e60012;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.author-profile-container .profile-title {
    font-size: 32px;
    margin: 10px 0 20px 0;
    font-weight: 800;
}

.author-profile-container .profile-description {
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
}

.author-profile-container .services-title {
    font-size: 20px;
    border-left: 4px solid #e60012;
    padding-left: 15px;
    margin-bottom: 15px;
    font-weight: bold;
}

.author-profile-container .services-box {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
    color: #555;
    line-height: 1.6;
}

.author-profile-container .contact-card {
    width: 340px;
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-top: 5px solid #e60012;
}

.author-profile-container .contact-card .profile {
    margin-top: 0;
    font-size: 24px;
    margin-bottom: 25px;
    font-weight: bold;
}

.author-profile-container .info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
}

.author-profile-container .label {
    color: #333;
    font-weight: 600;
}

.author-profile-container .value {
    color: #888;
}

.author-profile-container .email {
    font-size: 13px;
    word-break: break-all;
}

.author-profile-container .tag {
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: bold;
    margin-left: 5px;
}

.author-profile-container .tag-red { background: #fee2e2; color: #ef4444; }
.author-profile-container .tag-pink { background: #fff1f2; color: #fb7185; }

.author-profile-container .visit-btn {
    display: block;
    background: #ff0015;
    color: white !important;
    text-align: center;
    padding: 12px;
    border-radius: 6px;
    text-decoration: none;
    margin-top: 25px;
    font-weight: bold;
    transition: background 0.3s;
}

.author-profile-container .visit-btn:hover {
    background: #d00012;
}

@media (max-width: 768px) {
    .author-profile-container .contact-card { width: 100%; }
    .author-profile-container .author-profile-container { padding: 20px; }
}