/* ==========================
   HEADING WIDGET
========================== */

.pamgro-heading {
    margin-bottom: 20px;
}

.pamgro-heading h2 {
    font-size: 36px;
    line-height: 1.3;
    margin: 0;
    font-weight: 700;
}

/* ==========================
   CONTENT WIDGET
========================== */

.pamgro-content {
    margin-bottom: 25px;
}

.pamgro-content p {
    margin-bottom: 15px;
}

.pamgro-content ul,
.pamgro-content ol {
    padding-left: 25px;
}

/* ==========================
   CTA WIDGET
========================== */

.pamgro-cta {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    margin: 30px 0;
}

.pamgro-cta .cta-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.pamgro-cta h3 {
    margin-bottom: 20px;
    font-size: 26px;
}

.pamgro-cta h3 a {
    text-decoration: none;
    color: inherit;
}

.pamgro-cta .cta-button {
    display: inline-block;
    padding: 12px 30px;
    background: #ef4137;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.3s;
}

.pamgro-cta .cta-button:hover {
    opacity: 0.9;
}

.pamgro-content-section{
    width:100%;
    margin-top: 50px;
}

.pamgro-section-heading{
    margin:0 0 20px;
    line-height:1.3;
}

.pamgro-section-content p {
	font-family: "Inter", sans-serif;
	margin-bottom: 10px;
	color: #000;
}

.pamgro-section-content p:last-child{
    margin-bottom:0;
}

.pamgro-section-content ul,
.pamgro-section-content ol{
    padding-left:20px;
}

.pamgro-resource-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: #ffffff;
    text-decoration: none;
    height: 100%;
    transition: all 0.3s ease;
}

/* IMAGE */
.pamgro-resource-card .resource-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.pamgro-resource-card .resource-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* CONTENT AREA */
.pamgro-resource-card .resource-content {
    padding: 18px 18px 60px 18px;
}

/* CATEGORY */
.pamgro-resource-card .resource-category {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: #2c3a67;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 8px;
}

/* TITLE */
.pamgro-resource-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3a67;
    line-height: 1.4;
    margin: 0;
}

/* ARROW BUTTON (IMPORTANT PART) */
.pamgro-resource-card .resource-arrow {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 42px;
    height: 42px;
    background: #2c3a67;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* ICON INSIDE */
.pamgro-resource-card .resource-arrow i {
    color: #ffffff;
    font-size: 14px;
}

/* HOVER EFFECT */
.pamgro-resource-card:hover {
    background: #cfeff7; /* light blue like your screenshot */
}

.pamgro-resource-card:hover .resource-image img {
    transform: scale(1.05);
}

.pamgro-resource-card:hover .resource-arrow {
    background: #1f2f55;
}
.pamgro-resource-card.is-active {
    background: #a2d0ea;
}

.pamgro-resource-card-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.pamgro-image-box {
    width: 80px;
    height: 80px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
}