.text-left {
    text-align: left;
}
.text-center {
    text-align: center;
}
.text-right {
    text-align: right;
}
.size-sm {
    font-size: 14px;
}
.size-md {
    font-size: 18px;
}
.size-lg {
    font-size: 20px;
}
.size-xl {
    font-size: 24px;
}
.p-card-container b,
.p-card-container strong {
    font-weight: 500;
}
.p-card-main-title {
    font-weight: bold;
    font-family: system-ui, -apple-system, sans-serif;
    color: #555558;
    font-weight: 700;
    margin: 30px 0 15px 0;
}
.p-card-main-description {
    max-width: 800px;
    margin: 0 auto 30px auto;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #334155;
    padding: 0 15px;
    box-sizing: border-box;
}
.p-card-main-description p {
    margin: 0 0 15px 0;
}
.p-card-main-description p:last-child {
    margin-bottom: 0;
}
.p-card-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 10px 0;
    font-family: system-ui, -apple-system, sans-serif;
    box-sizing: border-box;
}
.p-card-row {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    overflow: hidden;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.p-card-row:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-color: #cbd5e1;
}
.p-card-img-wrap {
    width: auto;
    height: auto;
    flex-shrink: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    padding: 12px;
}
.p-card-img-wrap img {
    display: block;
    width: auto;
    height: 350px;
    max-width: 100%;
    object-fit: contain;
    border-radius: 8px !important;
}
.p-card-txt-wrap {
    flex-grow: 1;
    padding: 25px 30px;
}
.p-card-txt-wrap p {
    margin: 0 0 10px 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #475569;
/*  text-align: justify;*/
}
.p-card-txt-wrap p:last-child {
    margin-bottom: 0;
}

/*
.p-card-txt-wrap li {
    text-align: justify;
}
*/

/*
p, li {
    text-align: justify;
}
*/

@media (min-width:641px) {
.p-card-row.reverse .p-card-img-wrap {
    order: 2;
}
.p-card-row.reverse .p-card-txt-wrap {
    order: 1;
}
}

@media (max-width:640px) {
.p-card-main-title {
    font-size: 1.5rem;
    margin: 20px 0 15px 0;
}
.p-card-main-description {
    font-size: 0.95rem;
    margin-bottom: 20px;
}
.p-card-row {
    flex-direction: column;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
.p-card-img-wrap {
    width: 100%!important;
    max-width: 100%!important;
    height: auto!important;
    padding: 15px 15px 0 15px;
    box-sizing: border-box;
}
.p-card-img-wrap img {
    width: auto!important;
    max-width: 100%!important;
    height: auto!important;
    max-height: 300px!important;
    object-fit: contain;
    border-radius: 8px !important;
}
.p-card-txt-wrap {
    padding: 20px;
}
}
