.pciac-modal-wrap {
margin: 2rem 0;
}
.pciac-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
margin-bottom: 2rem;
} .pciac-card {
background: #2D2DA6;
border: 1px solid #606DF4;
border-radius: 0;
padding: 30px 24px;
cursor: pointer;
transition: background-color 0.3s ease;
display: flex;
align-items: center;
justify-content: space-between;
gap: 5px;
}
.pciac-card:hover {
background: #042354;
} .pciac-card:focus {
outline: none;
background: #042354;
}
.pciac-card-title {
font-size: 1.375rem;
font-weight: 500;
color: #FFFFFF;
margin: 0;
line-height: 1.2; flex: 1;
}
.pciac-card-arrow {
flex-shrink: 0;
width: 30px;
height: 30px;
} .pciac-modal {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 9999;
opacity: 0;
visibility: hidden;
transition: opacity 0.3s ease, visibility 0.3s ease;
display: flex;
align-items: center;
justify-content: center;
padding: 100px 20px;
box-sizing: border-box;
}
.pciac-modal.is-active {
opacity: 1;
visibility: visible;
}
.pciac-modal-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.6);
cursor: pointer;
}
.pciac-modal-container {
position: relative;
width: 90%;
max-width: 800px;
max-height: calc(100vh - 200px);
background: #ffffff;
border-radius: 0;
overflow: visible;
transform: translateY(-20px);
transition: transform 0.3s ease;
z-index: 1;
}
.pciac-modal.is-active .pciac-modal-container {
transform: translateY(0);
} .pciac-modal-close {
position: absolute;
top: -40px;
right: -40px;
width: 40px;
height: 40px;
background: rgba(255, 255, 255, 0.1);
border: none;
border-radius: 0;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
z-index: 10;
transition: all 0.3s ease;
}
.pciac-modal-close svg {
width: 14px;
height: 14px;
}
.pciac-modal-close:hover {
background: rgba(255, 255, 255, 0.2);
} .pciac-modal-close:focus {
outline: none;
background: rgba(255, 255, 255, 0.2);
} .pciac-modal-content {
padding: 40px;
overflow-y: auto;
max-height: calc(100vh - 200px);
text-align: center;
} .pciac-modal-icon {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 20px;
background: #3332CB;
margin-bottom: 20px;
}
.pciac-modal-icon svg {
width: 50px;
height: 50px;
} .pciac-modal-title {
font-size: 1.5rem;
font-weight: 500;
color: #121820;
margin: 0 0 20px 0;
line-height: 1.3; text-align: center;
} .pciac-modal-separator {
width: 100%;
height: 1px;
background: #E5E5E5;
border: none;
margin: 0 0 20px 0;
} .pciac-modal-body {
color: #1B1C1D;
line-height: 1.5; font-size: 1rem;
font-weight: 400;
margin-bottom: 40px;
text-align: left;
}
.pciac-modal-body p {
margin-bottom: 1rem;
}
.pciac-modal-body p:last-child {
margin-bottom: 0;
}
.pciac-modal-body h1,
.pciac-modal-body h2,
.pciac-modal-body h3,
.pciac-modal-body h4,
.pciac-modal-body h5,
.pciac-modal-body h6 {
color: #121820;
margin-top: 1.5rem;
margin-bottom: 0.75rem;
}
.pciac-modal-body ul,
.pciac-modal-body ol {
margin-bottom: 1rem;
padding-left: 1.5rem;
}
.pciac-modal-body img {
max-width: 100%;
height: auto;
border-radius: 4px;
margin: 1rem 0;
} .pciac-modal-button {
display: inline-block;
padding: 12px 24px;
background: #3332CB;
color: #ffffff;
text-decoration: none;
font-size: 1rem;
font-weight: 700;
text-transform: uppercase;
border: none;
cursor: pointer;
transition: background-color 0.3s ease;
}
.pciac-modal-button:hover {
background: #2726a8;
color: #ffffff;
text-decoration: none;
} .pciac-no-projects {
text-align: center;
color: #666;
font-style: italic;
padding: 2rem;
background: #f9f9f9;
border: 1px dashed #ddd;
border-radius: 8px;
} @media (max-width: 968px) {
.pciac-grid {
grid-template-columns: repeat(2, 1fr);
gap: 15px;
}
.pciac-card {
padding: 24px 20px;
}
.pciac-modal-container {
width: 92%;
margin: 50px auto;
max-height: calc(100vh - 100px);
}
.pciac-modal-content {
padding: 32px 24px;
max-height: calc(100vh - 100px);
}
.pciac-modal-title {
font-size: 1.35rem;
} .pciac-modal-close {
top: 12px;
right: 12px;
background: #fff;
border: 1px solid #D4D4D4;
border-radius: 50%;
} .pciac-modal-close svg path {
fill: #363636;
}
.pciac-modal-close:hover {
background: #f5f5f5;
border-color: #3332CB;
}
.pciac-modal-close:hover svg path {
fill: #3332CB;
}
.pciac-modal-close:focus {
background: #f5f5f5;
border-color: #3332CB;
}
.pciac-modal-close:focus svg path {
fill: #3332CB;
}
}
@media (max-width: 640px) {
.pciac-grid {
grid-template-columns: 1fr;
gap: 15px;
}
.pciac-card {
padding: 20px 16px;
}
.pciac-card-title {
font-size: 1rem;
}
.pciac-modal-container {
width: 95%;
margin: 20px auto;
max-height: calc(100vh - 40px);
}
.pciac-modal-content {
padding: 24px 16px;
max-height: calc(100vh - 40px);
}
.pciac-modal-title {
font-size: 1rem;
}
.pciac-modal-body{
font-size: 0.875rem;
}
} body.pciac-modal-open {
overflow: hidden;
}