/* Obra Description Inline Toggle Styles */
.obra-description__toggle-link {
    color: #007cba;
    text-decoration: none;
    font-weight: 500;
    margin-left: 4px;
    cursor: pointer;
    transition: color 0.2s ease;
}

.obra-description__toggle-link:hover {
    color: #005a87;
    text-decoration: underline;
}

.obra-description__toggle-link:focus {
    outline: 2px solid #007cba;
    outline-offset: 2px;
}

/* Ensure proper spacing */
.obra-description__preview,
.obra-description__full {
    line-height: 1.6;
}

/* Remove any existing button styles if they exist */
.obra-description__toggle {
    display: none !important;
}

/* Obra Agent Card Button Styles */
.obra-agent-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    width: 100%;
    margin-bottom: 8px;
    gap: 8px;
}

.obra-agent-card__btn:hover {
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.obra-agent-card__btn:focus {
    outline: 2px solid #0073aa;
    outline-offset: 2px;
}

/* Primary button - Ver Estudio */
.obra-agent-card__btn--primary {
    background: #0073aa;
    color: white;
    font-weight: 600;
}

.obra-agent-card__btn--primary:hover {
    background: #005a87;
    color: white;
}

/* Email button - Contactar Estudio */
.obra-agent-card__btn--mail {
    background: #28a745;
    color: white;
}

.obra-agent-card__btn--mail:hover {
    background: #218838;
    color: white;
}

/* Phone button - Llamar Estudio */
.obra-agent-card__btn--call {
    background: white;
    color: #333;
    border: 1px solid #ddd;
}

.obra-agent-card__btn--call:hover {
    background: #f8f9fa;
    color: #333;
    border-color: #adb5bd;
}

/* Responsive button layout */
@media (max-width: 768px) {
    .obra-agent-card__actions {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
} 