:root {
--art-brown: #9a634e;
--art-dark: #5a3c2a;
--art-bg: #fdfaf0;
}
.art-manage-container {
max-width: 600px; margin: 2rem auto;
padding: 1rem;
}
.art-manage-title {
display: none;
}
.art-info-card {
display: flex;
align-items: center;
gap: 1rem;
padding: 1rem 1.5rem;
background: rgba(154, 99, 78, 0.05);
border: 1px solid var(--color-fondo-4, var(--art-brown));
border-radius: 12px;
margin-bottom: 2rem;
width: 100%;
}
.art-info-card__icon {
color: var(--color-fondo-4, var(--art-brown));
font-size: 1.25rem;
flex-shrink: 0;
}
.art-info-card__content {
flex: 1;
}
.art-info-card__title {
font-size: 0.95rem;
font-weight: 700;
color: var(--txt-3, var(--art-dark));
margin: 0;
text-transform: none;
}
.art-info-card__desc {
font-size: 0.8rem;
color: var(--txt-3, var(--art-dark));
margin: 0.25rem 0 0;
opacity: 0.8;
}
.art-manage-card {
background: var(--color-fondo-2, #fffcf0);
border-radius: 16px;
padding: 1rem !important;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
border: 1px solid rgba(0, 0, 0, 0.03);
}
.art-manage-form .art-form-group {
margin-bottom: 2rem;
}
.art-manage-form .art-label {
display: block;
font-size: 0.85rem;
font-weight: 700;
color: var(--txt-3, var(--art-dark));
margin-bottom: 0.5rem;
text-transform: uppercase;
letter-spacing: 0.05em;
}
.art-manage-form .art-input {
width: 100% !important;
padding: 12px 0 !important;
border: none !important;
border-bottom: 2px solid var(--txt-3, var(--art-dark)) !important;
background: transparent !important;
border-radius: 0 !important;
font-size: 1rem !important;
color: var(--txt-3, var(--art-dark)) !important;
transition: all 0.3s ease;
box-shadow: none !important;
outline: none !important;
display: block !important;
}
.art-manage-form .art-input:focus {
border-bottom-color: var(--color-fondo-4, var(--art-brown)) !important;
background: rgba(255, 255, 255, 0.05) !important;
}
.art-manage-form select.art-input {
padding-right: 2rem !important;
cursor: pointer;
} .art-upload-zone {
border: 2px dashed rgba(154, 99, 78, 0.3);
border-radius: 12px;
padding: 2rem;
text-align: center;
background: rgba(255, 255, 255, 0.5);
cursor: pointer;
transition: all 0.3s ease;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 140px;
}
.art-upload-zone:hover {
border-color: var(--color-fondo-4, var(--art-brown));
background: rgba(255, 255, 255, 0.8);
}
.art-upload-icon {
font-size: 2rem;
color: var(--color-fondo-4, var(--art-brown));
margin-bottom: 0.75rem;
}
.art-upload-text {
font-size: 0.9rem;
font-weight: 600;
color: var(--txt-3, var(--art-dark));
}
.art-upload-subtext {
font-size: 0.75rem;
color: var(--txt-3, var(--art-dark));
opacity: 0.6;
margin-top: 0.25rem;
} .art-image-preview-container,
.art-preview-container {
position: relative;
margin-bottom: 1.5rem;
display: none; }
.art-image-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
gap: 1rem;
margin-top: 1rem;
}
.art-image-preview-item {
position: relative;
aspect-ratio: 1;
}
.art-image-preview,
.art-preview-image {
width: 100%;
height: 100%;
object-fit: cover;
border-radius: 12px;
border: 1px solid rgba(154, 99, 78, 0.2);
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
.art-remove-btn,
.art-remove-preview {
position: absolute;
top: -8px;
right: -8px;
background: var(--color-fondo-4, var(--art-brown));
color: white !important;
width: 24px;
height: 24px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
z-index: 10;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
transition: all 0.2s ease;
border: 2px solid white;
font-weight: bold;
line-height: 1;
font-size: 16px;
padding: 0;
}
.art-remove-btn:hover {
transform: scale(1.1);
background: var(--color-primary, var(--art-brown));
} .art-form-grid {
display: grid;
grid-template-columns: 1fr;
gap: 1.5rem;
}
@media (min-width: 768px) {
.art-form-grid {
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}
} .art-selection-grid {
display: flex;
flex-wrap: wrap;
gap: 0.5rem;
}
.art-selection-bubble {
background: white;
border: 1px solid rgba(154, 99, 78, 0.2);
padding: 0.25rem 0.75rem;
border-radius: 20px;
cursor: pointer;
transition: all 0.2s ease;
display: flex;
align-items: center;
gap: 0.4rem;
font-size: 0.75rem;
}
.art-selection-bubble:hover {
border-color: var(--color-fondo-4, var(--art-brown));
}
.art-selection-bubble.active {
background: var(--color-fondo-4, var(--art-brown));
color: white;
border-color: var(--color-fondo-4, var(--art-brown));
} .art-manage-actions {
display: flex;
gap: 1rem;
margin-top: 3rem;
padding-top: 2rem;
border-top: 1px solid rgba(154, 99, 78, 0.1);
}
.art-btn-submit {
flex: 1;
background: var(--color-primary, var(--art-brown));
color: white;
border: none;
padding: 1rem 2rem;
border-radius: 8px;
font-weight: 700;
font-size: 1rem;
cursor: pointer;
transition: all 0.3s ease;
display: flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
}
.art-btn-submit:hover {
background: var(--color-fondo-4, var(--art-brown));
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(154, 99, 78, 0.2);
}
.art-btn-delete {
background: transparent;
color: var(--art-brown);
border: 1px solid rgba(154, 99, 78, 0.3);
padding: 0.8rem 1.5rem;
border-radius: 8px;
font-weight: 600;
cursor: pointer;
transition: all 0.2s ease;
display: flex;
align-items: center;
gap: 0.5rem;
}
.art-btn-delete:hover {
background: #ef4444;
color: white;
border-color: #ef4444;
} .wp-editor-container {
border: 1px solid rgba(154, 99, 78, 0.2);
border-radius: 8px;
overflow: hidden;
}
.wp-editor-area {
background: white !important;
} .art-alert {
padding: 1rem 1.25rem;
border-radius: 12px;
margin-bottom: 2rem;
font-size: 0.85rem;
display: flex;
align-items: flex-start;
gap: 0.75rem;
border: 1px solid transparent;
line-height: 1.5;
}
.art-alert--info {
background: rgba(154, 99, 78, 0.05);
border-color: rgba(154, 99, 78, 0.2);
color: var(--art-dark);
}
.art-alert--success {
background: rgba(76, 175, 80, 0.05);
border-color: rgba(76, 175, 80, 0.2);
color: #2e7d32;
}
.art-alert--error {
background: rgba(211, 47, 47, 0.05);
border-color: rgba(211, 47, 47, 0.2);
color: #c62828;
}
.art-alert i {
margin-top: 0.15rem;
font-size: 1rem;
} .art-crop-modal {
position: fixed;
inset: 0;
background: rgba(0, 0, 0, 0.7);
backdrop-filter: blur(8px);
-webkit-backdrop-filter: blur(8px);
z-index: 999999;
display: flex;
align-items: center;
justify-content: center;
padding: 1rem;
opacity: 0;
pointer-events: none;
transition: opacity 0.3s ease;
}
.art-crop-modal.is-open {
opacity: 1;
pointer-events: auto;
}
.art-crop-modal-content {
background: var(--color-fondo-1, #f4ecd0);
border-radius: 16px;
width: 100%;
max-width: 600px;
padding: 1.5rem;
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
border: 1px solid var(--color-fondo-2, #e1d9c0);
display: flex;
flex-direction: column;
max-height: 90vh;
transform: scale(0.9);
transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.art-crop-modal.is-open .art-crop-modal-content {
transform: scale(1);
}
.art-crop-header {
margin-bottom: 1rem;
display: flex;
justify-content: space-between;
align-items: center;
}
.art-crop-title {
font-size: 1.1rem;
font-weight: 700;
color: var(--txt-3, #5a3c2a);
margin: 0;
}
.art-crop-area-wrapper {
width: 100%;
height: 50vh;
max-height: 400px;
background: #111;
border-radius: 8px;
overflow: hidden;
position: relative;
}
.art-crop-area-wrapper img {
max-width: 100%;
display: block;
}
.art-crop-controls {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: space-between;
gap: 0.75rem;
margin-top: 1.25rem;
}
.art-crop-actions-left {
display: flex;
gap: 0.5rem;
}
.art-crop-actions-right {
display: flex;
gap: 0.5rem;
flex-grow: 1;
justify-content: flex-end;
}
.art-crop-btn-tool {
background: var(--color-fondo-2, #e1d9c0);
color: var(--txt-3, #5a3c2a);
border: 1px solid var(--color-fondo-2);
width: 2.5rem;
height: 2.5rem;
border-radius: 8px;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
transition: all 0.2s ease;
font-size: 0.95rem;
}
.art-crop-btn-tool:hover {
background: var(--color-fondo-4, #9a634e);
color: #ffffff;
border-color: var(--color-fondo-4);
}
.art-crop-btn-cancel {
background: transparent;
color: var(--color-fondo-4, #9a634e);
border: 1px solid var(--color-fondo-4);
padding: 0.6rem 1.25rem;
border-radius: 8px;
font-weight: 600;
cursor: pointer;
transition: all 0.2s ease;
font-size: 0.875rem;
}
.art-crop-btn-cancel:hover {
background: rgba(154, 99, 78, 0.1);
}
.art-crop-btn-save {
background: var(--color-primary, #9a634e);
color: #ffffff;
border: none;
padding: 0.6rem 1.5rem;
border-radius: 8px;
font-weight: 700;
cursor: pointer;
transition: all 0.2s ease;
font-size: 0.875rem;
display: flex;
align-items: center;
gap: 0.5rem;
}
.art-crop-btn-save:hover {
background: #83513e;
transform: translateY(-1px);
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.art-btn-crop-existing {
background: transparent;
color: var(--color-fondo-4, #9a634e);
border: 1px solid rgba(154, 99, 78, 0.3);
padding: 0.6rem 1.25rem;
border-radius: 8px;
font-weight: 600;
font-size: 0.85rem;
cursor: pointer;
transition: all 0.2s ease;
display: inline-flex;
align-items: center;
gap: 0.5rem;
margin-top: 0.5rem;
}
.art-btn-crop-existing:hover {
background: var(--color-fondo-4, #9a634e);
color: white;
border-color: var(--color-fondo-4, #9a634e);
} .art-manage-container {
max-width: 600px;
margin: 2rem auto;
padding: 1rem;
transition: max-width 0.3s ease;
}
@media (min-width: 1024px) {
.art-manage-container {
max-width: 960px; }
.art-manage-layout {
display: grid;
grid-template-columns: 1fr 300px;
grid-template-rows: auto 1fr;
gap: 2rem;
align-items: start;
}
.art-info-card {
grid-column: 1;
grid-row: 1;
margin-bottom: 0 !important;
}
.art-manage-card {
grid-column: 1;
grid-row: 2;
}
.art-manage-sidebar {
grid-column: 2;
grid-row: 1 / span 2;
position: sticky;
top: 100px;
align-self: start;
margin-bottom: 0 !important;
}
}
@media (max-width: 1023px) {
.art-manage-layout {
display: flex;
flex-direction: column;
}
} .art-latest-works {
margin-top: 2.5rem;
padding-top: 2rem;
border-top: 1px solid rgba(154, 99, 78, 0.15);
}
.art-latest-works h2 {
font-size: 1.05rem;
font-weight: 700;
color: var(--txt-3, var(--art-dark));
margin: 0 0 1.25rem 0;
display: flex;
align-items: center;
gap: 0.5rem;
}
.art-latest-works h2 i {
color: var(--color-fondo-4, var(--art-brown));
font-size: 1rem;
}
.art-works-list {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
gap: 1rem;
}
.art-work-item {
background: var(--color-fondo-1, #f4ecd0);
border: 1px solid var(--color-fondo-4, var(--art-brown));
border-radius: 10px;
overflow: hidden;
transition: transform 0.2s ease, border-color 0.2s ease;
}
.art-work-item:hover {
transform: translateY(-3px);
border-color: var(--color-primary, var(--art-brown));
}
.art-work-item__img {
width: 100%;
height: 140px;
object-fit: cover;
display: block;
}
.art-work-item__content {
padding: 0.75rem;
}
.art-work-item__content h3 {
margin: 0 0 0.25rem 0;
font-size: 0.85rem;
line-height: 1.3;
}
.art-work-item__title {
color: var(--txt-3, var(--art-dark));
text-decoration: none;
font-weight: 600;
transition: color 0.2s ease;
}
.art-work-item__title:hover {
color: var(--color-fondo-4, var(--art-brown));
}
.art-work-item__meta {
font-size: 0.75rem;
color: var(--color-fondo-4, var(--art-brown));
margin: 0;
opacity: 0.85;
}
.art-latest-works .art-empty-text {
font-size: 0.85rem;
color: var(--txt-3, var(--art-dark));
opacity: 0.5;
font-style: italic;
margin: 0;
}
@media (max-width: 480px) {
.art-works-list {
grid-template-columns: 1fr 1fr;
gap: 0.75rem;
}
.art-work-item__img {
height: 110px;
}
}  .art-selected-space-card {
display: flex;
align-items: center;
padding: 0.75rem;
background: #fdfcf7; border: 1px solid rgba(154, 99, 78, 0.25);
border-radius: 12px;
gap: 1rem;
position: relative;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
transition: all 0.3s ease;
margin-top: 0.5rem;
margin-bottom: 1.25rem;
}
.art-selected-space-card:hover {
box-shadow: 0 4px 12px rgba(154, 99, 78, 0.08);
border-color: rgba(154, 99, 78, 0.45);
}
.art-selected-space-card__img-container {
width: 60px;
height: 60px;
border-radius: 8px;
overflow: hidden;
flex-shrink: 0;
background-color: #f3f0e7;
border: 1px solid rgba(0, 0, 0, 0.05);
}
.art-selected-space-card__img {
width: 100%;
height: 100%;
object-fit: cover;
}
.art-selected-space-card__no-img {
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
color: #9a634e;
font-size: 1.25rem;
background: #fdfaf0;
}
.art-selected-space-card__content {
flex: 1;
min-width: 0;
padding-right: 28px; }
.art-selected-space-card__badge {
display: inline-block;
font-size: 9px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.05em;
padding: 2px 6px;
border-radius: 4px;
margin-bottom: 4px;
}
.art-selected-space-card__badge--galeria {
background-color: rgba(154, 99, 78, 0.1);
color: #9a634e;
}
.art-selected-space-card__badge--teatro {
background-color: rgba(184, 134, 11, 0.1);
color: #b8860b;
}
.art-selected-space-card__badge--museo {
background-color: rgba(70, 130, 180, 0.1);
color: #4682b4;
}
.art-selected-space-card__title {
font-size: 0.9rem;
font-weight: 600;
color: #5a3c2a;
margin: 0 0 2px 0;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.art-selected-space-card__address {
font-size: 0.75rem;
color: #7c7267;
margin: 0;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
display: flex;
align-items: center;
gap: 4px;
}
.art-selected-space-card__remove-btn {
position: absolute;
top: 50%;
right: 12px;
transform: translateY(-50%);
background: none;
border: none;
color: #a0978d;
cursor: pointer;
font-size: 1.5rem;
width: 24px;
height: 24px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.2s ease;
padding: 0;
line-height: 1;
}
.art-selected-space-card__remove-btn:hover {
background-color: rgba(239, 68, 68, 0.1);
color: #ef4444;
} .art-assoc-section {
margin-top: 0.25rem;
}
.art-assoc-section__title {
font-size: 0.95rem;
font-weight: 600;
color: #5a3c2a;
margin: 0 0 0.15rem 0;
display: flex;
align-items: center;
gap: 0.5rem;
}
.art-assoc-section__title i {
color: #9a634e;
font-size: 0.9rem;
}
.art-assoc-section__subtitle {
font-size: 0.78rem;
color: #8a7d72;
margin: 0 0 0.9rem 0;
}
.art-assoc-toggle {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 0.75rem;
margin: 0 0 1.25rem 0;
}
@media (max-width: 520px) {
.art-assoc-toggle {
grid-template-columns: 1fr;
}
}
.art-assoc-option {
position: relative;
display: flex;
align-items: center;
gap: 0.75rem;
padding: 0.85rem 0.95rem;
background: #fdfcf7;
border: 1.5px solid rgba(154, 99, 78, 0.22);
border-radius: 12px;
cursor: pointer;
transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
user-select: none;
}
.art-assoc-option:hover {
border-color: rgba(154, 99, 78, 0.5);
box-shadow: 0 2px 10px rgba(154, 99, 78, 0.08);
}
.art-assoc-option input[type="radio"] {
position: absolute;
opacity: 0;
width: 0;
height: 0;
pointer-events: none;
}
.art-assoc-option__icon {
display: flex;
align-items: center;
justify-content: center;
width: 42px;
height: 42px;
border-radius: 10px;
background: rgba(154, 99, 78, 0.09);
color: #9a634e;
font-size: 1.05rem;
flex-shrink: 0;
transition: background 0.2s ease, color 0.2s ease;
}
.art-assoc-option__text {
display: flex;
flex-direction: column;
gap: 2px;
min-width: 0;
padding-right: 20px;
}
.art-assoc-option__title {
font-size: 0.86rem;
font-weight: 600;
color: #5a3c2a;
line-height: 1.25;
}
.art-assoc-option__desc {
font-size: 0.72rem;
color: #8a7d72;
line-height: 1.25;
}
.art-assoc-option__check {
position: absolute;
top: 12px;
right: 12px;
width: 18px;
height: 18px;
border-radius: 50%;
border: 2px solid rgba(154, 99, 78, 0.3);
background: #fff;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
transition: border-color 0.2s ease, background 0.2s ease;
}
.art-assoc-option__check::after {
content: '';
width: 8px;
height: 8px;
border-radius: 50%;
background: #fff;
transform: scale(0);
transition: transform 0.15s ease;
}
.art-assoc-option:has(input[type="radio"]:checked),
.art-assoc-option.is-active {
border-color: #9a634e;
background: #ffffff;
box-shadow: 0 3px 12px rgba(154, 99, 78, 0.14);
}
.art-assoc-option:has(input[type="radio"]:checked) .art-assoc-option__icon,
.art-assoc-option.is-active .art-assoc-option__icon {
background: #9a634e;
color: #fff;
}
.art-assoc-option:has(input[type="radio"]:checked) .art-assoc-option__check,
.art-assoc-option.is-active .art-assoc-option__check {
border-color: #9a634e;
background: #9a634e;
}
.art-assoc-option:has(input[type="radio"]:checked) .art-assoc-option__check::after,
.art-assoc-option.is-active .art-assoc-option__check::after {
transform: scale(1);
}
.art-assoc-option input[type="radio"]:focus-visible ~ .art-assoc-option__icon {
box-shadow: 0 0 0 3px rgba(154, 99, 78, 0.25);
} .art-space-search {
position: relative;
display: flex;
align-items: center;
margin-top: 0.35rem;
}
.art-space-search__icon {
position: absolute;
left: 0.1rem;
top: 50%;
transform: translateY(-50%);
color: #b0a396;
font-size: 0.9rem;
pointer-events: none;
transition: color 0.2s ease;
}
.art-space-search .art-input {
padding-left: 1.9rem !important;
}
.art-space-search:focus-within .art-space-search__icon {
color: #9a634e;
} .art-selected-works-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
gap: 0.75rem;
margin-top: 0.5rem;
}
.art-selected-work-card {
background: #fdfcf7; border: 1px solid rgba(154, 99, 78, 0.25);
border-radius: 12px;
overflow: hidden;
position: relative;
display: flex;
flex-direction: column;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
transition: all 0.25s ease;
}
.art-selected-work-card:hover {
transform: translateY(-2px);
box-shadow: 0 4px 10px rgba(154, 99, 78, 0.08);
border-color: rgba(154, 99, 78, 0.45);
}
.art-selected-work-card__img-container {
width: 100%;
height: 90px;
background-color: #f3f0e7;
overflow: hidden;
border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.art-selected-work-card__img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.3s ease;
}
.art-selected-work-card:hover .art-selected-work-card__img {
transform: scale(1.05);
}
.art-selected-work-card__no-img {
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
color: #9a634e;
font-size: 0.8rem;
font-weight: 500;
background: #fdfaf0;
}
.art-selected-work-card__content {
padding: 0.5rem;
flex-grow: 1;
display: flex;
flex-direction: column;
justify-content: center;
}
.art-selected-work-card__title {
font-size: 0.75rem;
font-weight: 600;
color: #5a3c2a;
margin: 0;
display: -webkit-box;
-webkit-line-clamp: 2;
line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
line-height: 1.3;
}
.art-selected-work-card__remove-btn {
position: absolute;
top: 6px;
right: 6px;
background: rgba(239, 68, 68, 0.9);
color: white !important;
border: none;
width: 18px;
height: 18px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
font-size: 10px;
font-weight: bold;
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
transition: all 0.2s ease;
padding: 0;
line-height: 1;
z-index: 5;
}
.art-selected-work-card__remove-btn:hover {
background: #ef4444;
transform: scale(1.1);
} .art-obras-section {
margin-top: 0.25rem;
}
.art-section-divider {
height: 1px;
border: none;
background: rgba(154, 99, 78, 0.18);
margin: 1.25rem 0;
} .art-obras-grid--selection {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(115px, 1fr));
gap: 0.6rem;
margin-top: 0.6rem;
}
@media (max-width: 480px) {
.art-obras-grid--selection {
grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
gap: 0.5rem;
}
} .art-selection-card {
background: #fff;
border: 1px solid rgba(154, 99, 78, 0.15);
border-radius: 10px;
padding: 6px;
cursor: pointer;
display: flex;
flex-direction: column; align-items: stretch;
gap: 6px;
transition: all 0.2s ease;
position: relative;
overflow: hidden;
width: 100%;
}
.art-selection-card:hover {
transform: translateY(-2px);
box-shadow: 0 4px 10px rgba(154, 99, 78, 0.1);
border-color: rgba(154, 99, 78, 0.4);
}
.art-selection-card.is-selected {
background: rgba(154, 99, 78, 0.06);
border-color: #9a634e;
box-shadow: 0 0 0 2px rgba(154, 99, 78, 0.15);
}
.art-selection-card.is-selected::after {
content: '\f00c';
font-family: 'Font Awesome 6 Free';
font-weight: 900;
position: absolute;
top: 8px;
right: 8px;
width: 20px;
height: 20px;
display: flex;
align-items: center;
justify-content: center;
background: #9a634e;
color: #fff;
border-radius: 50%;
font-size: 0.6rem;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.art-selection-card__img-container {
width: 100%;
aspect-ratio: 1 / 1;
border-radius: 6px;
overflow: hidden;
background-color: #f3f0e7;
flex-shrink: 0;
border: 1px solid rgba(0, 0, 0, 0.03);
}
.art-selection-card__img {
width: 100%;
height: 100%;
object-fit: cover;
}
.art-selection-card__no-img {
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
color: #9a634e;
font-size: 10px;
font-weight: 500;
background: #fdfaf0;
}
.art-selection-card__title {
font-size: 0.72rem;
font-weight: 600;
color: #5a3c2a;
line-height: 1.25;
display: -webkit-box;
-webkit-line-clamp: 2;
line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
margin: 0;
text-align: center;
} .leaflet-attribution-flag {
display: none !important;
} .art-manage-form .art-checkbox-wrapper {
display: flex;
align-items: center;
gap: 0.5rem;
margin-bottom: 1rem;
}
.art-manage-form .art-checkbox {
appearance: none;
-webkit-appearance: none;
background-color: transparent;
margin: 0;
font: inherit;
color: currentColor;
width: 1.25em;
height: 1.25em;
border: 2px solid var(--txt-3, var(--art-dark));
border-radius: 4px;
display: grid;
place-content: center;
cursor: pointer;
transition: all 0.2s ease;
flex-shrink: 0;
}
.art-manage-form .art-checkbox::before {
content: "";
width: 0.65em;
height: 0.65em;
transform: scale(0);
transition: 120ms transform ease-in-out;
box-shadow: inset 1em 1em white;
background-color: white;
transform-origin: center;
clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}
.art-manage-form .art-checkbox:checked {
background-color: var(--color-fondo-4, var(--art-brown));
border-color: var(--color-fondo-4, var(--art-brown));
}
.art-manage-form .art-checkbox:checked::before {
transform: scale(1);
}
.art-manage-form .art-checkbox-label {
font-size: 0.85rem;
font-weight: 700;
color: var(--txt-3, var(--art-dark));
margin-bottom: 0;
text-transform: uppercase;
letter-spacing: 0.05em;
cursor: pointer;
display: block;
}